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
|
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "async_generator"
description = "Async generators and context managers for Python 3.5+"
readme = "README.rst"
authors = [
{name = "Nathaniel J. Smith", email = "njs@pobox.com"},
]
license = "MIT OR Apache-2.0"
license-files = ["LICENSE", "LICENSE.APACHE2", "LICENSE.MIT"]
requires-python = ">= 3.5"
keywords = ["async"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Framework :: AsyncIO",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/python-trio/async_generator"
[tool.setuptools.dynamic]
version = {attr = "async_generator._version.__version__"}
|