-
Notifications
You must be signed in to change notification settings - Fork 117
/
pyproject.toml
77 lines (69 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools >=61"]
build-backend = "setuptools.build_meta"
[project]
name = "rasterstats"
description = "Summarize geospatial raster datasets based on vector geometries"
authors = [
{name = "Matthew Perry", email = "[email protected]"},
]
readme = "README.rst"
keywords = ["gis", "geospatial", "geographic", "raster", "vector", "zonal statistics"]
dynamic = ["version"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.7"
dependencies = [
"affine",
"click >7.1",
"cligj >=0.4",
"fiona",
"numpy >=1.9",
"rasterio >=1.0",
"simplejson",
"shapely",
]
[project.optional-dependencies]
progress = [
"tqdm"
]
test = [
"coverage",
"geopandas",
"pyshp >=1.1.4",
"pytest >=4.6",
"pytest-cov >=2.2.0",
"simplejson",
]
dev = [
"rasterstats[test]",
"numpydoc",
"twine",
]
[project.entry-points."rasterio.rio_plugins"]
zonalstats = "rasterstats.cli:zonalstats"
pointquery = "rasterstats.cli:pointquery"
[project.urls]
Documentation = "https://pythonhosted.org/rasterstats/"
"Source Code" = "https://github.com/perrygeo/python-rasterstats"
[tool.setuptools.dynamic]
version = {attr = "rasterstats._version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.isort]
profile = "black"
known_first_party = ["rasterstats"]