-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (30 loc) · 1.07 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 sys
from setuptools import setup
assert sys.version_info >= (3, 4), 'print_statement requires Python 3.4+'
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='print_statement',
version='0.1.0',
description='from __past__ import print_statement',
long_description=long_description,
author='evan_',
author_email='evanunderscore@gmail.com',
url='https://pypi.python.org/pypi/print_statement',
license='GNU General Public License v3',
py_modules=['print_statement'],
test_suite='test_print_statement',
tests_require=['coverage'],
setup_requires=['nose'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
],
keywords='print statement',
)