-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
81 lines (75 loc) · 1.54 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
[build-system]
requires = [
"setuptools >= 57.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "tatc"
description = "Tradespace Analysis Toolkit for Constellations (TAT-C)"
authors = [
{name = "Paul T. Grogan", email = "paul.grogan@asu.edu"}
]
readme = "README.md"
requires-python = ">=3.8, <3.13"
license = {text = "BSD License"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
dependencies = [
"geopandas >= 0.13.2",
"joblib",
"numba",
"numpy",
"pandas",
"pydantic >= 2.6",
"pyproj",
"shapely >= 2",
"skyfield >= 1.48",
"sgp4",
"spiceypy",
"typing-extensions",
"pyyaml",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://tatc.readthedocs.io"
Repository = "https://github.com/code-lab-org/tatc"
Documentation = "https://tatc.readthedocs.io"
Issues = "https://github.com/code-lab-org/tatc/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"tatc" = ["resources/*.bsp"]
[project.optional-dependencies]
dev = [
"black[jupyter] >= 24.2",
"coverage",
"pylint",
"pylint-pydantic",
"pytest"
]
docs = [
"autodoc_pydantic >= 2",
"docutils",
"myst-nb",
"sphinx >= 7",
"sphinx-rtd-theme"
]
examples = [
"ipykernel",
"matplotlib",
"cartopy"
]
osse = [
"netcdf4",
"pydap",
"rioxarray",
"scipy",
"scikit-learn",
"seaborn"
]
[tool.setuptools.dynamic]
version = {attr = "tatc.__version__"}