-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
45 lines (41 loc) · 1.31 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
[build-system]
requires = [
"setuptools>=64",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "geofabrics"
version = "1.1.24"
description = "A package for creating geofabrics for flood modelling."
readme = "README.md"
authors = [{ name = "Rose pearson", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["GeoFabrics", "DEM", "Roughness", "Hydrologically conditioned", "LiDAR"]
dependencies = [
"dask",
"distributed",
"python-pdal",
"rioxarray",
"geoapis",
"netcdf4",
"osmpythontools>=0.3.5",
'tomli; python_version < "3.10"',
]
requires-python = ">=3.10"
[project.scripts]
geofabrics_from_file = "geofabrics.__main__:cli_run_from_file"
geofabrics_from_dict = "geofabrics.__main__:cli_run_from_dict"
[project.optional-dependencies]
dev = ["black", "check-manifest", "python-dotenv", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/rosepearson/GeoFabrics"
Documentation = "https://rosepearson.github.io/GeoFabrics/"