-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
38 lines (35 loc) · 1.11 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
[tool.poetry]
name = "luftdaten"
version = "0.7.4"
description = "Python API for interacting with luftdaten.info"
authors = ["Fabian Affolter <[email protected]>"]
license = "MIT"
homepage = "https://github.com/home-assistant-ecosystem/python-luftdaten"
repository = "https://github.com/home-assistant-ecosystem/python-luftdaten"
readme = "README.rst"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Home Automation"
]
[tool.poetry.dependencies]
python = "^3.9"
httpx = ">=0.23,<1"
[tool.poetry.dev-dependencies]
black = "^23.3"
pytest = "^7"
isort = "^5.11"
pytest-httpx = ">0.15,<1"
pytest-asyncio = "^0.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"