-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 926 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 926 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
42
43
44
45
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "uvdat-flood-sim"
description = "An end-to-end dynamic flood simulation."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
maintainers = [
{ name = "Kitware, Inc.", email = "kitware@kitware.com" },
{ name = "August Posch", email = "augustposch@augustposch.us" },
]
dependencies = [
"click",
"matplotlib",
"numpy",
"pandas",
"pyproj",
"rasterio",
"requests",
"scikit-learn",
"scipy",
]
dynamic = ["version"]
[project.optional-dependencies]
large-image-writer = [
"large-image[zarr]",
"tifftools",
]
[project.urls]
Repository = "https://github.com/OpenGeoscience/uvdat-flood-sim"
"Bug Reports" = "https://github.com/OpenGeoscience/uvdat-flood-sim/issues"
[tool.hatch.build]
only-include = [
"uvdat_flood_sim",
]
[tool.hatch.version]
source = "vcs"