forked from USEPA/pyaqsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (46 loc) · 1.45 KB
/
setup.cfg
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
[metadata]
name: pyAQSAPI
version = 1.0
author = Clinton Mccrowey
author_email = mccrowey.clinton@epa.gov
description = Retrieve air monitoring data and associated metadata from the US Environmental Protection Agency's Air Quality System Data Mart API service using functions. See <https://aqs.epa.gov/aqsweb/documents/data_api.html> for details about the US EPA Data Mart API.
long_description =
url = NA
project_urls =
Homepage = https://github.com/USEPA/pyaqsapi
AQS = https://www.epa.gov/aqs
AQS DataMart = https://aqs.epa.gov/aqsweb/documents/data_mart_welcome.html
AQS DataMart API = https://aqs.epa.gov/aqsweb/documents/data_api.html
SOURCE = https://github.com/USEPA/pyaqsapi.git
pyaqsapi API documentation = https://usepa.github.io/pyaqsapi/
RAQSAPI = https://github.com/USEPA/RAQSAPI
Issue Tracker = https://github.com/USEPA/pyaqsapi/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires >= 3.8
[options.packages.find]
where = pyaqsapi
exclude =
"*.egg-info"
"build"
"dev"
[coverage:run]
branch = True
[coverage:report]
show_missing = True
skip_covered = True
skip_empty = True
[coverage:html]
directory = tests\coverage_report
[options.extras_require]
docs =
sphinx
sphinxcontrib-napoleon
sphinxcontrib-apidoc
sphinxcontrib-spelling
sphinx_rtd_theme
sphinxcontrib-bibtex