-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "simple-justwatch-python-api"
authors = [
{ name = "Electronic Mango", email = "78230210+Electronic-Mango@users.noreply.github.com" },
]
version = "1.3.0"
description = "A simple JustWatch Python API"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">= 3.11"
keywords = ["justwatch", "api", "graphql"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["httpx>=0.28.1"]
[dependency-groups]
dev = [
"mkdocstrings-python>=2.0.3",
"pytest>=9.0.3",
"pytest-mock>=3.15.1",
"ruff>=0.15.10",
"zensical>=0.0.37",
]
[project.urls]
Homepage = "https://github.com/Electronic-Mango/simple-justwatch-python-api"
Documentation = "https://electronic-mango.github.io/simple-justwatch-python-api"
Repository = "https://github.com/Electronic-Mango/simple-justwatch-python-api"
Changelog = "https://github.com/Electronic-Mango/simple-justwatch-python-api/blob/main/CHANGELOG.md"
Releases = "https://github.com/Electronic-Mango/simple-justwatch-python-api/releases"
[build-system]
requires = ["uv_build>=0.11.3,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "simplejustwatchapi"
[tool.pytest.ini_options]
pythonpath = ["src", "test"]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN401", # Type hinting JSONs is problematic
"COM812", # Avoid issues with formatter
"D203", # Conflicts with D211
"D212", # Conflicts with D213
"FBT",
"FIX002",
"PLR0913", # I think it makes sense for functions here to have more arguments
"TD002",
"TD003",
]