-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
36 lines (28 loc) · 1.04 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
import io
try:
from setuptools import setup # used mostly for wheel building
except ImportError:
from distutils.core import setup
with io.open('README.rst', encoding='utf8') as _f:
long_description = _f.read().strip()
with io.open('CHANGES.rst', encoding='utf8') as _f:
long_description += '\n\n%s\n' % _f.read().strip()
setup(
name='backports_abc',
version="0.5",
url='https://github.com/cython/backports_abc',
author='Stefan Behnel et al.',
author_email='cython-devel@python.org',
description="A backport of recent additions to the 'collections.abc' module.",
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
py_modules=["backports_abc"],
)