-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "buildingregulariser"
dynamic = ["version"]
description = "A Python library for regularizing building footprints in geospatial data. This library helps clean up and standardize building polygon geometries by aligning edges to principal directions."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"geopandas>=1.0.0",
"numpy>=2.0.0",
]
license = "MIT"
keywords = ["building", "segmentation", "geospatial", "geodataframe", "geopandas", "regularisation", "footprint", "geometry", "regularization", "house"]
[tool.setuptools.dynamic]
version = {attr = "buildingregulariser.__version__.__version__"}
[dependency-groups]
dev = [
"folium>=0.19.5",
"ipykernel>=6.29.5",
"mapclassify>=2.8.1",
"matplotlib>=3.9.4",
"pytest>=8.3.5",
"rasterio>=1.4.3",
"ruff>=0.12.4",
]
[project.urls]
Homepage = "https://github.com/DPIRD-DMA/Building-Regulariser"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.ruff]
select = ["E", "F", "B"]