-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
44 lines (35 loc) · 1.22 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
[project]
name = "s1ard"
description = "A prototype processor for Sentinel-1 Analysis Ready Data (ARD) backscatter products"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
maintainers = [
{ name = "John Truckenbrodt", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"
]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
repository = "https://github.com/SAR-ARD/s1ard"
documentation = "https://s1ard.readthedocs.io/en/latest/"
[project.optional-dependencies]
test = ["pytest", "requests"]
docs = ["sphinx", "sphinxcontrib-bibtex", "nbsphinx", "sphinx_rtd_theme", "sphinx-toolbox", "ipython"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["s1ard"]
[tool.setuptools.package-data]
"s1ard" = ["resources/*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools_scm]
[project.scripts]
s1rb = "s1ard.cli:cli"