-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "sar-antarctica"
requires-python = ">=3.8"
authors = [
{name="Geoscience Australia", email="[email protected]"},
]
description = "Antarctic SAR Backscatter Processing Pipeline"
classifiers=[
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
version = "0.1" # TODO base this on files in proje t
[project.urls]
Homepage = "https://github.com/GeoscienceAustralia/sar-antarctica.git"
# Documentation = "XXX"
[project.scripts]
find-scene = "sar_antarctica.nci.cli:find_scene_file"
find-orbits = "sar_antarctica.nci.cli:find_orbits_for_scene"
run-pyrosar-gamma-workflow = "sar_antarctica.nci.cli:run_pyrosar_gamma_workflow"
submit-pyrosar-gamma-workflow = "sar_antarctica.nci.cli:submit_pyrosar_gamma_workflow"
[tool.pytest.ini_options]
testpaths = ["tests/*"]
[tool.setuptools.packages.find]
where = ["."]