generated from NOAA-OWP/owp-open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
executable file
·48 lines (44 loc) · 1.03 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
[project]
name = "RISE"
version = "0.1.0"
description = "RISE: Real-time Inundation mapping using the SFINCS Engine"
authors = [
{ name = "Tadd.Bindas", email = "[email protected]" }
]
dependencies = [
"pydantic==2.7.1",
"fastapi==0.110.1",
"httpx==0.27.0",
"geopandas==1.0.1",
"numpy==1.26.3",
"pandas==2.2.2",
"sqlalchemy==2.0.31",
"pyarrow==15.0.0",
"xarray==2024.3.0",
"isort==4.3.21",
"geoalchemy2==0.15.2",
"psycopg2-binary==2.9.6",
"aio-pika==9.4.3",
"uvicorn==0.30.1",
"pydantic-settings==2.3.4",
"redis==5.0.7",
"pytest==8.3.2",
"pytest-asyncio==0.23.8",
"matplotlib==3.9.0",
"netcdf4==1.6.5",
"hydromt-sfincs==1.1.0",
"docker==7.1.0",
"networkx",
"zarr",
]
readme = "README.md"
requires-python = ">= 3.9"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/rise"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]