-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.29 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
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = "dggstools"
version = "0.1.2"
dynamic = ["dependencies"]
authors = [
{ name="Rubén Béjar", email="[email protected]" },
{ name="Sergio Martin-Segura", email="[email protected]" },
{ name="Francisco J. Lopez-Pellicer", email="[email protected]" },
{ name="Javier Nogueras-Iso", email="[email protected]" },
{ name="F. Javier Zarazaga-Soria", email="[email protected]" },
]
description = "A Python library and command line tool to manipulate raster and vector GIS data in a DGGS (rHEALPix for now)."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/IAAA-Lab/dggstools"
Issues = "https://github.com/IAAA-Lab/dggstools/issues"
Changelog = "https://github.com/IAAA-Lab/dggstools/blob/main/changelog.md"
[project.scripts]
dggstools = "dggstools.__main__:app"
[tool.setuptools]
packages = ["dggstools", "dggstools.auids", "dggstools.rhpx", "dggstools.rhpx.utils"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}