File: pyproject.toml

package info (click to toggle)
python-luftdaten 0.7.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 128 kB
  • sloc: python: 172; makefile: 6; sh: 5
file content (37 lines) | stat: -rw-r--r-- 1,093 bytes parent folder | download
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
[tool.poetry]
name = "luftdaten"
version = "0.7.4"
description = "Python API for interacting with luftdaten.info"
authors = ["Fabian Affolter <mail@fabian-affolter.ch>"]
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",
    "Topic :: Home Automation"
]

[tool.poetry.dependencies]
python = "^3.9"
httpx = ">=0.23,<1"

[tool.poetry.dev-dependencies]
black = "^22.8"
pytest = "^6.2.5"
isort = "^5.10.0"
pytest-httpx = ">0.15,<1"
pytest-asyncio = "^0.16.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"