-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.1 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
from setuptools import find_packages, setup
LONG_DESC = open("README.rst", encoding="utf-8").read()
setup(
name="asyncscope",
use_scm_version={"version_scheme": "guess-next-dev", "local_scheme": "dirty-tag"},
setup_requires=["setuptools_scm"],
description="Task scopes for AnyIO",
url="http://github.com/M-o-a-T/asyncscope",
long_description=LONG_DESC,
author="Matthias Urlichs",
author_email="matthias@urlichs.de",
license="GPLv3 or later",
packages=find_packages(),
install_requires=["anyio >= 4", "trio >= 0.22"],
keywords=["async"],
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Trio",
"Framework :: AsyncIO",
],
)