-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.29 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streamstats_access"
version = "0.1.9"
description = "A Python package to access and process data from the USGS StreamStats API."
authors = [
{ name="Scott Lawson", email="scott.lawson@uvm.edu" }
]
license = { file="LICENSE" }
readme = "README.md"
keywords = ["USGS", "StreamStats", "API", "Geospatial", "Hydrology", "statistics", "watershed characteristics", "water resources", "data retrieval"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"aiohttp >= 3.8.1",
"geopandas >= 0.9.0",
"pandas >= 1.3.0",
]
[project.urls]
"Homepage" = "https://github.com/sclaw/streamstats_access"
"Bug Tracker" = "https://github.com/sclaw/streamstats_access/issues"
[project.optional-dependencies]
dev = [
"twine",
"build"
]
[tool.setuptools]
packages = ["streamstats_access"]
[tool.black]
line-length = 88