-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
65 lines (56 loc) · 1.96 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "flightplandb"
authors = [
{name = "PH-KDX", email = "[email protected]"},
]
description = "Python wrapper for the Flight Plan Database API"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL v3"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Games/Entertainment :: Simulation",
]
dependencies = [
"aiohttp >= 3.8.4; python_version >= '3.11'",
"aiohttp >= 3.5.2; python_version < '3.11'",
"python-dateutil~=2.8.2",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["Sphinx==6.2.1", "sphinx-rtd-theme==1.2.0"]
test = ["pytest~=7.3.1", "pytest-socket~=0.6.0", "pytest-asyncio~=0.21.0"]
dev = ["pre-commit"]
[project.urls]
"Homepage" = "https://github.com/PH-KDX/flightplandb-py/"
"Documentation" = "https://flightplandb-py.readthedocs.io/"
"Issue tracker" = "https://github.com/PH-KDX/flightplandb-py/issues"
"Changelog" = "https://github.com/PH-KDX/flightplandb-py/blob/main/CHANGELOG.rst"
[tool.setuptools.dynamic]
version = {attr = "flightplandb.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
flightplandb = ['py.typed']
[tool.pytest.ini_options]
addopts = "-vv --disable-socket"
asyncio_mode = "auto"
[tool.isort]
profile = "black"
line_length = 88