-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (47 loc) · 1.46 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
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pygeoflood"
version = "0.0.3a1"
authors = [
{ name = "Paola Passalacqua", email = "[email protected]" },
{ name = "Xing Zheng", email = "[email protected]" },
{ name = "Alec Carruthers", email = "[email protected]" },
{ name = "Mark Wang", email = "[email protected]" },
{ name = "Matthew Preisser", email = "[email protected]"}
]
maintainers = [
{ name = "Mark Wang", email = "[email protected]" },
{ name = "Matthew Preisser", email = "[email protected]" },
{ name = "Paola Passalacqua", email = "[email protected]" },
]
description = "Flood mapping program based on high-resolution terrain analyses"
readme = "README.md"
requires-python = ">=3.10,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"geopandas",
"ipykernel",
"matplotlib",
"numba",
"numpy",
"pandas",
"rasterio",
"scikit-fmm",
"scikit-image",
"scipy",
"whitebox",
"xarray",
"fiona",
]
[project.urls]
"Homepage" = "https://github.com/passaH2O/GeoFlood"
"Repository" = "https://github.com/passaH2O/GeoFlood"
"Bug Tracker" = "https://github.com/passaH2O/GeoFlood/issues"
[tool.setuptools]
package-data = { "pygeoflood" = ["data/COMID_Roughness.csv"] }