-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.63 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
[build-system]
requires = ["setuptools>=64.0", "wheel", "setuptools_scm>=7.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "dsm2ui/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
fallback_version = "0.0.1"
[project]
name = "dsm2ui"
dynamic = ["version"]
description = "DSM2 User Interface and analysis tools"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "Kijin Nam", email = "knam@water.ca.gov"},
{name = "Nicky Sandhu", email = "psandhu@water.ca.gov"}
]
keywords = ["dsm2", "delta", "modeling", "hydrology", "ui"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"dvue @ git+https://github.com/CADWRDeltaModeling/dvue",
"dms-datastore",
"pydsm",
"panel",
"holoviews",
"geoviews",
"hvplot",
"pyhecdss",
"vtools",
"geopandas",
"scipy",
"scikit-learn",
"matplotlib",
"param",
"bokeh",
"colorcet",
"diskcache",
"tqdm",
"xarray",
"pyyaml",
"click",
]
[project.urls]
Homepage = "https://github.com/CADWRDeltaModeling/dsm2ui"
[project.scripts]
dsm2ui = "dsm2ui.cli:main"
[tool.setuptools]
zip-safe = false
include-package-data = true
packages = {find = {include = ["dsm2ui", "dsm2ui.*"]}}
[tool.setuptools.package-data]
"dsm2ui" = ["dsm2gis/*.geojson"]
"dsm2ui.calib" = ["data/*.csv"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "ex_*.py"]
collect_ignore = ["setup.py"]
addopts = "--doctest-modules"