|
1 | | -from setuptools import setup, find_packages |
| 1 | +from setuptools import setup |
2 | 2 |
|
3 | | -exec(open("exceptiongroup/_version.py", encoding="utf-8").read()) |
4 | | - |
5 | | -LONG_DESC = open("README.rst", encoding="utf-8").read() |
6 | | - |
7 | | -setup( |
8 | | - name="exceptiongroup", |
9 | | - version=__version__, |
10 | | - description="A way to represent multiple things going wrong at the same time, in Python", |
11 | | - url="https://github.com/python-trio/exceptiongroup", |
12 | | - long_description=LONG_DESC, |
13 | | - author="Nathaniel J. Smith", |
14 | | - |
15 | | - license="MIT -or- Apache License 2.0", |
16 | | - packages=find_packages(), |
17 | | - install_requires=["trio"], |
18 | | - keywords=["async", "exceptions", "error handling"], |
19 | | - python_requires=">=3.5", |
20 | | - classifiers=[ |
21 | | - "License :: OSI Approved :: MIT License", |
22 | | - "License :: OSI Approved :: Apache Software License", |
23 | | - "Framework :: Trio", |
24 | | - "Framework :: AsyncIO", |
25 | | - "Operating System :: POSIX :: Linux", |
26 | | - "Operating System :: MacOS :: MacOS X", |
27 | | - "Operating System :: Microsoft :: Windows", |
28 | | - "Programming Language :: Python :: 3 :: Only", |
29 | | - "Programming Language :: Python :: Implementation :: CPython", |
30 | | - "Programming Language :: Python :: Implementation :: PyPy", |
31 | | - "Intended Audience :: Developers", |
32 | | - ], |
33 | | -) |
| 3 | +setup() |
0 commit comments