-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
84 lines (78 loc) · 1.75 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "pycap-dss"
description = "long_description.rst"
version = "1.3.0"
authors = [
{name = "Michael Fienen", email = "mnfienen@usgs.gov"},
{name = "Aaron Pruitt", email = "Aaron.Pruitt@wisconsin.gov"},
{name = "Howard Reeves", email = "hwreeves@usgs.gov"}
]
maintainers = [
{name = "Michael Fienen", email = "mnfienen@usgs.gov"}
]
readme = "Readme.md"
keywords = ["streamflow depletion", "analytical solutions","drawdown", "groundwater", "hydrogeology"]
license-files = [
"LICENSE.md"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.10"
dependencies = [
"ipython",
"jupyter",
"notebook",
"ipykernel",
"matplotlib",
"pyyaml",
"geopandas",
"numpy",
"scipy",
"pandas",
"gdal",
"fiona",
"rasterio>=1.0",
"rasterstats",
"shapely",
"rtree",
"pyproj>=2.0",
"pyshp",
"xlrd",
"openpyxl",
"requests"
]
[tool.setuptools.packages.find]
include = ["pycap","pycap*"]
[project.optional-dependencies]
test = [
"codecov",
"coverage",
"pytest",
"pytest-timeout"
]
docs = [
"sphinx",
"ruff",
"black",
"numpydoc",
"nbsphinx ",
"sphinx-copybutton",
"sphinx_rtd_theme"
]
# [tool.versioneer]
# VCS = "git"
# style = "pep440"
# versionfile_source = "pycap/_version.py"
# versionfile_build = "pycap/_version.py"
# tag_prefix = ""
# parentdir_prefix = "pycap-"
[project.urls]
documentation = "https://doi-usgs.github.io/pycap-dss/latest/"
repository = "https://github.com/doi-usgs/pycap-dss"