-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
85 lines (77 loc) · 2.14 KB
/
pyproject.toml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyroclient"
description = "Python Client for Pyronear wildfire alert API"
authors = [
{name = "Pyronear", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.8,<4"
license = {file = "LICENSE"}
keywords = ["backend", "wildfire", "alert", "client", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
dependencies = [
"requests>=2.31.0,<3.0.0",
]
[project.optional-dependencies]
test = [
"pytest==8.3.4",
"pytest-cov>=4.0.0,<5.0.0",
"pytest-pretty>=1.0.0,<2.0.0",
"types-requests>=2.0.0",
]
quality = [
"mypy==1.10.0",
]
docs = [
"sphinx>=3.0.0,!=3.5.0",
"sphinxemoji>=0.1.8",
"sphinx-copybutton>=0.3.1",
"docutils<0.18",
# cf. https://github.com/readthedocs/readthedocs.org/issues/9038
"Jinja2<3.1",
"furo>=2022.3.4",
]
[project.urls]
documentation = "https://pyronear.org/pyro-api"
repository = "https://github.com/pyronear/pyro-api/client"
tracker = "https://github.com/pyronear/pyro-api/issues"
[tool.setuptools]
zip-safe = true
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*"]
[tool.mypy]
python_version = "3.8"
files = "pyroclient/"
show_error_codes = true
pretty = true
warn_unused_ignores = true
warn_redundant_casts = true
no_implicit_optional = true
check_untyped_defs = true
implicit_reexport = false
[[tool.mypy.overrides]]
module = [
"requests.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["pyroclient/"]