-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
33 lines (30 loc) · 1.25 KB
/
setup.py
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
from pathlib import Path
from setuptools import setup, find_packages
exec(open("async_generator/_version.py", encoding="utf-8").read())
setup(
name="async_generator",
version=__version__,
description="Async generators and context managers for Python 3.5+",
# Just in case the cwd is not the root of the source tree, or python is
# not set to use utf-8 by default:
long_description=Path(__file__).with_name("README.rst").read_text('utf-8'),
author="Nathaniel J. Smith",
author_email="[email protected]",
license="MIT -or- Apache License 2.0",
packages=find_packages(),
url="https://github.com/python-trio/async_generator",
python_requires=">=3.5",
keywords=["async"],
classifiers=[
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"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",
]
)