forked from python-trio/trio-typing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.74 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
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
import os
exec(open("trio_typing/_version.py", encoding="utf-8").read())
LONG_DESC = open("README.rst", encoding="utf-8").read()
stub_packages = ["async_generator-stubs", "outcome-stubs", "trio-stubs"]
setup(
name="trio-typing",
version=__version__,
description="Static type checking support for Trio and related projects",
url="https://github.com/python-trio/trio-typing",
long_description=LONG_DESC,
long_description_content_type="text/x-rst",
author="Joshua Oreman",
author_email="[email protected]",
license="MIT -or- Apache License 2.0",
packages=["async_generator-stubs", "outcome-stubs", "trio-stubs", "trio_typing"],
include_package_data=True,
install_requires=[
"trio >= 0.16.0",
"typing_extensions >= 3.7.4",
"mypy_extensions >= 0.4.2",
],
extras_require={
'mypy': [ # can't be installed on PyPy due to its dependency on typed-ast
"mypy >= 0.780",
],
},
keywords=["async", "trio", "mypy"],
classifiers=[
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Framework :: Trio",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
],
)