-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
55 lines (51 loc) · 1.96 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
50
51
52
53
54
55
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",
"async_generator",
"packaging",
"importlib-metadata",
],
extras_require={
"mypy": [ # can't be installed on PyPy due to its dependency on typed-ast
"mypy >= 1.0",
],
},
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
],
)