-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 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
from setuptools import find_packages, setup
__version__ = '1.3'
setup(
name='python2',
version=__version__,
author="Nicholas Gaya",
author_email="[email protected]",
description="A library for running Python 2 code from a Python 3 "
"application.",
url="https://github.com/nickgaya/python2",
download_url="https://github.com/nickgaya/python2/tarball/{}".format(
__version__),
license="MIT",
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['python2', 'legacy', 'compatibility'],
)