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
|
[project]
name = "pynina"
version = "1.0.2"
description = "A Python API wrapper to retrieve warnings from the german NINA app."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "DeerMaximum", email = "git983456@parabelmail.de" },
]
maintainers = [
{ name = "DeerMaximum", email = "git983456@parabelmail.de" },
]
requires-python = ">=3.13.2"
keywords = [
"api",
"wrapper",
"nina",
"warning"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development"
]
dependencies = [
"aiohttp>=3.13.3"
]
[project.urls]
homepage = "https://gitlab.com/DeerMaximum/pynina"
repository = "https://gitlab.com/DeerMaximum/pynina"
[dependency-groups]
dev = [
"pytest-cov>=7.0.0",
"pytest>=8.4.0",
"pytest-asyncio>=1.3.0",
"aioresponses>=0.7.8"
]
lint = [
"ruff>=0.14.11"
]
[build-system]
requires = ["setuptools >= 80.9.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
preview = true
[tool.ruff.lint.isort]
case-sensitive = true
[tool.uv]
default-groups = "all"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
|