-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.25 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
[build-system]
requires = ["setuptools>=64.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "damagescanner"
version = "0.8-beta.1"
authors = [
{name = "Elco Koks", email = "[email protected]"},
{name = "Jens de Bruijn", email = "[email protected]"},
]
license = {text = "MIT License"}
description = "Direct damage assessments for natural hazards"
keywords = ["GIS", "natural hazards", "damage assessment", "remote sensing", "raster", "vector", "geospatial"]
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"geopandas",
"matplotlib",
"numpy",
"pyproj",
"rasterio",
"xarray",
"rioxarray",
"packaging",
"pandas",
"shapely >= 2.0",
"tqdm",
"pyyaml",
"exactextract",
]
[tool.setuptools.package-data]
"*" = ["*.ini"]
[project.optional-dependencies]
tests = ["pytest"]
docs = ["jupyter"]
examples = ["osm-flex"]
[project.urls]
"Homepage" = "https://github.com/ElcoK/DamageScanner"
"Documentation" = "https://damagescanner.readthedocs.io/en/latest/"