-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.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 = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["kalpana"]
[project]
name = "kalpana"
version = "0.0.23"
dependencies = [
"dask==2023.1.0",
"geopandas==0.12.2",
"rioxarray==0.13.3",
"pandas==1.5.3",
"matplotlib==3.6.3",
"netCDF4==1.6.2",
"simplekml==1.3.6",
"scipy==1.10.0",
"rtree==1.0.1",
"cmocean==2.0",
"tqdm==4.64.1",
"numpy==1.24.1",
"ipykernel==6.20.2",
"shapely==2.0.0",
"loguru==0.7.0",
"cartopy==0.23.0",
"psycopg==3.1.18",
"scikit-learn==1.5.0"
]
authors = [
{ name="Tomas Cuevas", email="[email protected]" },
{ name="James McManus", email="[email protected]" },
{ name="Casey Dietrich", email="[email protected]" },
]
description = "Downscaling ADCIRC flooding predictions"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.urls]
"Homepage" = "https://github.com/ccht-ncsu/Kalpana"
"Bug Tracker" = "https://github.com/ccht-ncsu/Kalpana/issues"