-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.65 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "deltacd"
description = "DeltaCD, Delta Channel Depletion Model"
authors = [
{ name = "California Department of Water Resources", email = "kijin.nam@water.ca.gov" }
]
license = "MIT"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.9,<3.14"
keywords = ["deltacd", "hydrology"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Operating System :: OS Independent",
"Environment :: Console"
]
dependencies = [
"pandas",
"netcdf4",
"xarray",
"pyyaml",
"numba"
]
dynamic = ["version"]
[project.optional-dependencies]
dss = [
"pyhecdss",
]
[project.urls]
Homepage = "https://github.com/cadwrdeltamodeling/deltacd"
Source = "https://github.com/cadwrdeltamodeling/deltacd"
"Bug Tracker" = "https://github.com/cadwrdeltamodeling/deltacd/issues"
Documentation = "https://github.com/cadwrdeltamodeling/deltacd#readme"
[project.scripts]
dcd = "deltacd.dcd:main"
detaw = "deltacd.detaw:main"
deltacd2dsm2 = "deltacd.utils.deltacd2dsm2:main"
deltacd2calsim3 = "deltacd.utils.deltacd2calsim3:main"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.setuptools.packages.find]
where = ["."]
include = ["deltacd*"]
exclude = ["tests*", "docs*"]