forked from JoshCu/NGIAB_data_preprocess
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.black]
line-length = 99
# includes the data_sources files
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["modules"]
namespaces = true
exclude = ["tests*"]
[project]
name = "ngiab_data_preprocess"
#version = "0.0.1"
dynamic = ["version"]
authors = [{ name = "Josh Cunningham", email = "jcunningham8@ua.edu" }]
description = "Graphical Tools for creating Next Gen Water model input data."
readme = "README.md"
requires-python = ">=3.10,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyogrio==0.7.2",
"pyproj==3.6.1",
"Flask==3.0.2",
"geopandas>=1.0.0",
"requests==2.32.2",
"igraph==0.11.4",
"s3fs==2024.3.1",
"xarray==2024.2.0",
"zarr==2.17.1",
"netCDF4==1.6.5",
"dask==2024.4.1",
"dask[distributed]==2024.4.1",
"black==24.3.0",
"isort==5.13.2",
"h5netcdf==1.3.0",
"exactextract==0.2.0",
"numpy==1.26.4",
"tqdm==4.66.4",
"rich==13.7.1",
"colorama==0.4.6",
"bokeh==3.5.1"
]
[project.optional-dependencies]
eval = ["ngiab_eval"]
plot = ["ngiab_eval[plot]"]
[project.urls]
Homepage = "https://github.com/CIROH-UA/NGIAB_data_preprocess"
Issues = "https://github.com/CIROH-UA/NGIAB_data_preprocess/issues"
[project.scripts]
cli = "ngiab_data_cli.__main__:main"
map_app = "map_app.__main__:main"
[build-system]
# scm adds files tracked by git to the package
requires = ["setuptools>=69.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"