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
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aiohttp-asyncmdnsresolver"
dependencies = ["aiodns>=3.2.0", "aiohttp>=3.10.0", "zeroconf>=0.142.0"]
description = "An async resolver for aiohttp that supports MDNS"
dynamic = ["version"]
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Development Status :: 5 - Production/Stable"
]
[project.urls]
Homepage = "https://github.com/aio-libs/aiohttp-asyncmdnsresolver"
Issues = "https://github.com/aio-libs/aiohttp-asyncmdnsresolver/issues"
[tool.setuptools]
packages = ["aiohttp_asyncmdnsresolver"]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.dynamic]
version = {attr = "aiohttp_asyncmdnsresolver.__version__"}
[tool.ruff]
select = [
"I", # isort formatting.
]
|