-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
41 lines (36 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["harmonize_wq"]
[metadata]
name = "harmonize_wq"
version = "0.4.0"
[project]
name = "harmonize_wq"
version = "0.4.0"
authors = [
{ name="Justin Bousquin", email="[email protected]" },
]
description = "Package to standardize, clean, and wrangle Water Quality Portal data into more analytic-ready formats"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["USEPA", "water data", "water quality"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"geopandas",
"pint",
"dataretrieval",
]
[project.optional-dependencies]
test = ["pytest"]
doc = ["sphinx"]
[project.urls]
"Homepage" = "https://github.com/USEPA/harmonize-wq"
"Documentation" = "https://usepa.github.io/harmonize-wq/"
"Bug Tracker" = "https://github.com/USEPA/harmonize-wq/issues"