forked from oremanj/tricycle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.12 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
from setuptools import setup, find_packages
exec(open("tricycle/_version.py", encoding="utf-8").read())
LONG_DESC = open("README.rst", encoding="utf-8").read()
setup(
name="tricycle",
version=__version__,
description="Experiemntal extensions for Trio, the friendly async I/O library",
url="https://github.com/oremanj/tricycle",
long_description=LONG_DESC,
author="Joshua Oreman",
author_email="[email protected]",
license="MIT -or- Apache License 2.0",
packages=find_packages(),
include_package_data=True,
install_requires=["trio", "trio-typing >= 0.2.0"],
keywords=["async", "trio"],
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Framework :: Trio",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
],
)