-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
85 lines (77 loc) · 1.72 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "vtools"
dynamic = ["version"] # Placeholder; setuptools-scm will manage this
description = "Timeseries analysis and processing tools using pandas/xarray"
readme = "README.md"
license = "MIT"
license-files = [
"LICENSE",
]
authors = [
{ name = "California Department of Water Resources", email = "Eli.Ateljevich@water.ca.gov"}
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
keywords = ["vtools"]
dependencies = [
"numpy",
"pandas",
"numba",
"xarray",
"dask",
"dask-expr",
"matplotlib",
"scikit-learn",
"scipy",
"statsmodels>=0.13",
"pint",
"click",
"utide",
]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
"numpydoc"
]
test = [
"pytest>=3",
"pytest-cov",
"tox",
"click",
"setuptools-scm",
]
build = [
"build",
"pip",
"setuptools",
"wheel",
"setuptools-scm"
]
[project.urls]
Homepage = "https://github.com/CADWRDeltaModeling/vtools3"
[tool.setuptools]
include-package-data = true
[tool.flake8]
exclude = ["docs"]
[tool.pytest.ini_options]
collect_ignore = ["setup.py"]
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["vtools*"]
exclude = ["docsrc"]
[tool.setuptools_scm]
version_file="vtools/_version.py"
version_scheme = "post-release"
local_scheme = "dirty-tag"
[project.scripts]
vtl = "vtools.__main__:cli"
# separate_species = "vtools.functions.separate_species:main" # suppressed, for now use "vtl separate_species"