-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.54 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
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "satguard"
version = "1.0.0"
description = "Open-source conjunction assessment pipeline for space objects"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
authors = [
{name = "Genius Lab"},
]
keywords = ["space", "conjunction", "collision", "satellite", "sgp4", "cdm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"sgp4>=2.22",
"numpy>=2.0",
"scipy>=1.14",
"matplotlib>=3.9",
"httpx>=0.27",
"click>=8.1",
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"fpdf2>=2.8",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0",
"hypothesis>=6.100",
"mypy>=1.10",
"ruff>=0.4",
"types-PyYAML>=6.0",
]
[project.scripts]
satguard = "satguard.cli.main:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.mypy]
python_version = "3.12"
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = true
packages = ["satguard"]
mypy_path = "src"
ignore_missing_imports = true
[tool.ruff]
src = ["src", "tests"]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"network: marks tests that require network access",
]