forked from dbekaert/RAiDER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.97 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
[build-system]
requires =[
"setuptools>=61.0",
"setuptools_scm[toml]>=6.2",
"wheel",
"numpy",
"cython",
"pybind11>=2.5.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "RAiDER"
authors = [
{name="David Bekaert", email="david.bekaert@jpl.nasa.gov"},
{name="Jeremy Maurer", email="maurer.jeremy@gmail.com"},
{name="Piyush Agram", email="piyush@descarteslabs.com"},
{name="Simran Sangha", email="simran.s.sangha@jpl.nasa.gov"},
{name="Brett Buzzanga", email="buzzanga@jpl.nasa.gov"},
]
description = "Raytracing Atmospheric Delay Estimation for RADAR"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache License 2.0"}
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
# dependencies = []
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/dbekaert/RAiDER"
documentation = "https://github.com/dbekaert/RAiDER-docs"
repository = "https://github.com/dbekaert/RAiDER"
"Bug Tracker" = "https://github.com/dbekaert/RAiDER/issues"
[project.scripts]
"raider.py" = "RAiDER.cli.__main__:main"
"calcDelays.py" = "RAiDER.cli.raider:calcDelays"
"calcDelaysGUNW.py" = "RAiDER.cli.raider:calcDelaysGUNW"
"raiderDownloadGNSS.py" = "RAiDER.cli.raider:downloadGNSS"
"downloadGNSS.py" = "RAiDER.cli.raider:downloadGNSS"
"raiderStats.py" = "RAiDER.cli.statsPlot:main"
"generateGACOSVRT.py" = "RAiDER.models.generateGACOSVRT:main"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["tools"]
[tool.setuptools.package-data]
"*" = ["*.yml", "*.yaml"]
[tool.isort]
known_first_party = "RAiDER"
multi_line_output = 5
default_section = "THIRDPARTY"
[tool.setuptools_scm]