forked from johntruckenbrodt/spatialist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (27 loc) · 931 Bytes
/
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
[project]
name = "spatialist"
description = "a Python module for spatial data handling"
requires-python = ">=3.0"
license = { file = "LICENSE.txt" }
maintainers = [
{ name = "John Truckenbrodt", email = "john.truckenbrodt@dlr.de" }
]
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/johntruckenbrodt/pyroSAR"
documentation = "https://pyrosar.readthedocs.io/en/latest/"
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx", "sphinxcontrib-bibtex<2.0.0"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
readme = { file = ["README.md"] }
[tool.setuptools_scm]