-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.25 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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyairnow"
version = "1.2.2"
description = "A lightweight Python wrapper for EPA AirNow Air Quality API"
readme = "README.md"
authors = ["Jonathan Krauss <[email protected]>"]
license = "MIT"
repository = "https://github.com/asymworks/pyairnow"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
aiohttp = "^3.8.3"
python = "^3.8"
[tool.poetry.dev-dependencies]
aioresponses = "^0.7.0"
coverage = "^5.2.1"
flake8 = "^3.8.3"
pytest = "^6.0.2"
pytest-asyncio = "^0.14.0"
pytest-cov = "^2.10.1"
[tool.setuptools.package-data]
"pyairnow" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["pyairnow"]