forked from berkerpeksag/selectors34
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.1 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
# coding: utf-8
import io
from setuptools import setup
with io.open('README.rst', encoding='utf-8') as fobj:
long_description = fobj.read()
with io.open('CHANGELOG.rst', encoding='utf-8') as fobj:
long_description += '\n\n' + fobj.read()
setup(
name='selectors34',
version='1.1',
description='Backport of the selectors module from Python 3.4.',
long_description=long_description,
author='Charles-François Natali',
author_email='[email protected]',
maintainer='Berker Peksag',
maintainer_email='[email protected]',
license='Python Software Foundation License',
url='https://github.com/berkerpeksag/selectors34',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: Python Software Foundation License',
],
zip_safe=False,
py_modules=['selectors34'],
include_package_data=True,
install_requires=['six'],
)