-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.3 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
34
35
36
37
38
39
from setuptools import setup, find_packages
exec(open("aioguest/_version.py", encoding="utf-8").read())
LONG_DESC = open("README.rst", encoding="utf-8").read()
setup(
name="aioguest",
version=__version__,
description="Run asyncio and another event loop in the same thread",
url="https://github.com/oremanj/aioguest",
long_description=LONG_DESC,
author="Joshua Oreman",
author_email="oremanj@gmail.com",
license="MIT -or- Apache License 2.0",
packages=find_packages(),
install_requires=[
"attrs >= 21.3.0",
"greenlet",
"trio >= 0.16.0",
"sniffio >= 1.3.0",
"outcome",
],
include_package_data=True,
keywords=["async", "trio", "asyncio"],
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
],
)