-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
84 lines (74 loc) · 2.08 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
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
[project]
name = "pyaqsapi"
requires-python = ">=3.8"
dynamic = ["version", "dependencies", "optional-dependencies"]
description="Retrieve ambient air monitoring data from the United States Environmental Protection Agency’s (US EPA) Air Quality System (AQS) Data Mart API v2 interface."
authors = [
{name = "Clinton Mccrowey", email = "[email protected]"},
]
maintainers = [
{name = "Clinton Mccrowey", email = "[email protected]"}
]
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {file = "LICENSE.rst"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[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 Data Mart API" = "https://aqs.epa.gov/aqsweb/documents/data_api.html"
"pyaqsapi API Documentation" = "https://usepa.github.io/pyaqsapi/"
"SOURCE" = "https://github.com/USEPA/pyaqsapi.git"
"RAQSAPI" = "https://github.com/USEPA/RAQSAPI"
"Issue Tracker" = "https://github.com/USEPA/pyaqsapi/issues"
[build-system]
requires = [
"sphinx",
"sphinxcontrib-napoleon",
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
max-line-length = 85
combine-as-imports = true
show-source = true
[tool.ruff]
lint.select = ["I001",
"I002",
"E101",
"D100",
"D401",
"D402",
"D403",
"D404",
"D406",
"D407",
"D408",
"D409",
"D414",
"D415",
"D417",
"D419"]
lint.extend-select = ["UP"]
exclude = [
"__init__.py",
".git",
".tox",
"ruff_cache",
".spyproject",
".github",
".vscode",
"conf.py",
"setup.py",
"*tests/*"
]
[tool.ruff.lint.pydocstyle]
convention = "google"