-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpyproject.toml
93 lines (80 loc) · 2.75 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
[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="[email protected]"},
{name="Jeremy Maurer", email="[email protected]"},
{name="Piyush Agram", email="[email protected]"},
{name="Simran Sangha", email="[email protected]"},
{name="Brett Buzzanga", email="[email protected]"},
]
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"
"raiderCombine.py" = "RAiDER.cli.raider:combineZTDFiles"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["tools"]
[tool.setuptools.package-data]
"*" = ["*.yml", "*.yaml", "*.zip"]
[tool.isort]
known_first_party = "RAiDER"
multi_line_output = 5
default_section = "THIRDPARTY"
[tool.setuptools_scm]
[tool.ruff]
line-length = 120
src = ["tools", "test"]
[tool.ruff.format]
indent-style = "space"
quote-style = "single"
[tool.ruff.lint]
extend-select = [
"I", # isort: https://docs.astral.sh/ruff/rules/#isort-i
"UP", # pyupgrade: https://docs.astral.sh/ruff/rules/#pyupgrade-up
"D", # pydocstyle: https://docs.astral.sh/ruff/rules/#pydocstyle-d
"ANN", # annotations: https://docs.astral.sh/ruff/rules/#flake8-annotations-ann
"PTH", # use-pathlib-pth: https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
]
ignore = ["ANN101", "D200", "D205", "D212"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
case-sensitive = true
lines-after-imports = 2