-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.53 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
45
46
47
48
49
50
[tool.poetry]
name = "dggrid4py"
version = "0.3.1"
description = "a Python library to run highlevel functions of DGGRIDv7 and v8"
authors = ["Alexander Kmoch <[email protected]>",
"Wai Tik Chan <[email protected]>",
"Luís Moreira de Sousa <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/allixender/dggrid4py"
homepage = "https://github.com/allixender/dggrid4py"
keywords = ["python", "GIS", "DGGS", "DGGRID", "hexagons", "grids", "spatial statistics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: GIS"
]
[tool.poetry.dependencies]
python = ">=3.8, <4.0.0"
numpy = ">=1.22.0, <2.3.0"
pandas = ">=1.4.0, <2.4.0"
fiona = ">=1.8.0, <2.0.0"
shapely = ">=1.8.0, <2.1.0"
geopandas = ">=0.9.0, <1.1.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
# black = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.poetry.group.docs.dependencies]
sphinx = ">=7.1.2, <8.3.0"
sphinx-rtd-theme = ">=1.3.0rc1, <4.0.0"
myst-parser = ">=3.0.0, <5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"