-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replaced setup.py with pyproject.toml
- Loading branch information
1 parent
c76261c
commit aaecf83
Showing
5 changed files
with
34 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 = "[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/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] |
This file was deleted.
Oops, something went wrong.