-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
100 lines (88 loc) · 2.19 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "spacetrack"
version = "1.4.0"
description = "Python client for space-track.org"
readme = "README.rst"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Frazer McLean", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"filelock>=3.17.0",
"httpx>=0.28.1",
"logbook>=1.8.0",
"outcome>=1.3.0.post0",
"platformdirs>=4.3.6",
"python-dateutil>=2.9.0.post0; python_version < '3.11'",
"represent>=2.1",
"rush>=2021.4.0",
"sniffio>=1.3.1",
]
[project.urls]
Repository = "https://github.com/python-astrodynamics/spacetrack"
Documentation = "https://spacetrack.readthedocs.io"
[dependency-groups]
dev = [
{ include-group = "coverage" },
{ include-group = "nox" },
"pytest>=8.3.4",
"pytest-asyncio>=0.25.3",
"pytest-trio>=0.8.0",
"respx>=0.22.0",
"ruff==0.9.7",
]
docs = [
"furo>=2024.8.6",
"parver>=0.5",
"sphinx>=7.4.7",
]
docstest = [
{ include-group = "docs" },
"doc8>=1.1.2",
]
coverage = [
"coverage[toml]>=7.6.12",
]
nox = [
"nox>=2025.2.9",
]
[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.pytest.ini_options]
addopts = "-r s"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.ruff.lint]
select = [
"E4", "E7", "E9", "F", # ruff defaults
"I", # isort
"UP", # pyupgrade
]
[tool.doc8]
ignore-path = ["docs/_build", "docs/requirements.txt"]
ignore = ["D001"]