-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
74 lines (64 loc) · 1.59 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pydsm"
description = "For loading data from DSM2 hdf5 files into pandas DataFrame"
readme = "README.rst"
authors = [
{name = "Nicky Sandhu", email = "psandhu@water.ca.gov"},
]
requires-python = ">=3.7"
license = {text = "MIT license"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
]
keywords = ["pydsm"]
dependencies = [
"Click",
"networkx",
"h5py",
"pyhecdss",
"vtools3",
"pandas",
"numba",
"diskcache",
"tabulate",
]
dynamic = ["version"]
[project.scripts]
pydsm = "pydsm.cli:main"
[project.urls]
Homepage = "https://github.com/CADWRDeltaModeling/pydsm"
Issues = "https://github.com/CADWRDeltaModeling/pydsm/issues"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
include = ["pydsm", "pydsm.*"]
[tool.pytest]
testpaths = ["tests"]
[tool.setuptools_scm]
write_to = "pydsm/_version.py"
[tool.setuptools.package-data]
"*" = ["*.rst", "*.txt"]
[tool.setuptools.exclude-package-data]
"*" = ["*.pyc", "*.pyo", "*.pyd", "__pycache__/*"]
[project.optional-dependencies]
dev = [
"pip>=18.1",
"wheel>=0.32.1",
"watchdog>=0.9.0",
"flake8>=3.5.0",
"tox>=3.5.2",
"coverage>=4.5.1",
"Sphinx>=1.8.1",
"twine>=1.12.1",
"pytest>=3.8.2",
"pytest-runner>=4.2",
"setuptools_scm>=6.2",
]