-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (107 loc) · 2.49 KB
/
Copy pathpyproject.toml
File metadata and controls
117 lines (107 loc) · 2.49 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[tool.black]
line-length = 100
# includes the data_sources files
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["modules"]
namespaces = true
exclude = ["tests*"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
filterwarnings = [
'ignore::DeprecationWarning:geopandas._compat'
]
markers = [
"integration: end-to-end tests that hit live data sources (S3); non-hermetic",
]
[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.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyogrio>=0.7.2",
"pyproj>=3.6.1",
"pandas<3.0.0",
"Flask==3.1.3",
"geopandas>=1.0.0",
"requests==2.33.0",
"igraph==0.11.4",
"s3fs==2024.3.1",
"xarray==2024.2.0",
"zarr==2.17.1",
"netCDF4>=1.6.5,<1.7.3",
"dask==2024.4.1",
"dask[distributed]==2024.4.1",
"exactextract==0.2.0",
"numpy>=1.26.4",
"tqdm==4.66.4",
"rich==13.7.1",
"colorama==0.4.6",
"bokeh==3.8.2",
"boto3",
"numcodecs<0.16.0",
"scipy>=1.15.3",
"duckdb>=1.5.2",
]
[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"
forcings = "ngiab_data_cli.forcing_cli:main"
subset = "ngiab_data_cli.subset_cli: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"
[dependency-groups]
dev = ["pytest>=8.3.5", "ruff>=0.11.9"]
[tool.ruff]
line-length = 100
exclude = [
".html",
".js",
".css",
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]