-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
40 lines (33 loc) · 1.3 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
37
38
39
40
import os
import sys
from setuptools import setup
# If you change the version here, be sure to also change it in docs/conf.py and
# pip2/__init__.py
version = '0.0.1.dev1'
install_requires = []
# There is currently no Python 3 version of Distutils2 on PyPI (see GitHub
# issue 45). For now, only depend on distutils2 for Python 2; it needs to be
# installed manually for Python 3.
if sys.version_info < (3,):
install_requires.append('distutils2')
setup(name="pip2",
version=version,
description="Experimental port of pip to use distutils2.",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
],
keywords='pip packaging distutils2 easy_install setuptools',
author='OSUPython Senior Design Team',
author_email='osupython@gmail.com',
url='http://github.com/osupython/pip2',
license='MIT',
packages=['pip2', 'pip2.commands'],
entry_points=dict(console_scripts=['pip2=pip2:main']),
install_requires=install_requires,
zip_safe=False)