-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
76 lines (67 loc) · 1.63 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "spacetrack"
version = "1.3.1"
description = "Python client for space-track.org"
readme = "README.rst"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Frazer McLean", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dependencies = [
"httpx",
"logbook>=0.12.3",
"python-dateutil; python_version < '3.11'",
"represent>=1.4.0",
"rush",
"sniffio",
]
[project.urls]
Repository = "https://github.com/python-astrodynamics/spacetrack"
Documentation = "https://spacetrack.readthedocs.io"
[project.optional-dependencies]
test = [
"pytest-asyncio",
"pytest-trio",
"pytest>=6.0",
"respx",
]
docstest = [
"doc8",
"parver",
"sphinx",
"furo",
]
pep8test = [
"flake8",
"flake8-future-import",
"pep8-naming",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.run]
branch = true
source = ["spacetrack", "tests/"]
parallel = true
[tool.coverage.paths]
source = ["src/spacetrack", ".tox/**/site-packages/spacetrack"]
[tool.coverage.report]
precision = 1
exclude_lines = ["pragma: no cover", "^\\s*pass\\s*$"]
[tool.isort]
profile = "black"