forked from DOI-USGS/dataretrieval-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.13 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dataretrieval"
description = "Discover and retrieve water data from U.S. federal hydrologic web services."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["USGS", "water data"]
license = {file = "LICENSE.md"}
maintainers = [
{name = "Timothy Hodson", email = "[email protected]"},
{name = "Jayaram Hariharan", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"requests",
"pandas",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["dataretrieval", "dataretrieval.codes"]
[project.optional-dependencies]
test = [
"pytest > 5.0.0",
"pytest-cov[all]"
]
doc = [
"sphinx",
]
[project.urls]
homepage = "https://github.com/DOI-USGS/dataretrieval-python"
documentation = "https://doi-usgs.github.io/dataretrieval-python/"
repository = "https://github.com/DOI-USGS/dataretrieval-python.git"
[tool.setuptools_scm]
write_to = "dataretrieval/_version.py"
[tool.isort]
profile = "black"
[tool.black]
skip-string-normalization = true