-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1011 Bytes
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
authors = [{ name = "Seth Goodman", email = "sgoodman@aiddata.wm.edu" }]
classifiers = ["Programming Language :: Python :: 3"]
keywords = ["raster", "distance", "spatial"]
license = { text = "BSD 3-Clause License" }
name = "distancerasters"
version = "0.4.0a2"
description = "Generate distance raster using arbitrary sets of spatial features"
readme = "README.md"
requires-python = ">= 3.9"
dependencies = [
"numpy",
"rasterio",
"fiona",
"affine",
"rasterstats",
]
[project.urls]
source = "https://github.com/sgoodm/python-distance-rasters"
issues = "https://github.com/sgoodm/python-distance-rasters/issues"
[dependency-groups]
dev = [
"coverage>=7.6.4",
"coveralls",
"geopandas>=1.0.1",
"maturin>=1.12.6",
"pytest>=8.3.3",
"pytest-cov",
"shapely",
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "distancerasters._distancerasters"
python-source = "src"