aiopppp/pyproject.toml
Ivan Belokobylskiy c18391b134 bump version
2025-03-26 12:10:23 +04:00

39 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "aiopppp"
description = "An asynchronous Python library for connecting to PPPP-enabled cameras."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
authors = [
{name = "Ivan Belokobylskiy", email = "belokobylskij@gmail.com"}
]
requires-python = ">=3.7"
keywords = ["pppp", "camera", "async", "video", "streaming"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp",
]
[tool.setuptools.dynamic]
version = {attr = "aiopppp.__version__"}
[project.urls]
"Homepage" = "https://github.com/devbis/aiopppp"
"Bug Tracker" = "https://github.com/devbis/aiopppp/issues"