1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/setup.py

46 lines
1.4 KiB
Python

import sys
try:
from setuptools import setup
except ImportError:
if sys.platform == 'win32':
raise ImportError('Could not import setuptools: setuptools is required on Windows systems')
from distutils.core import setup
import os
version = '0.2.1'
doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
index_filename = os.path.join(doc_dir, 'index.txt')
long_description = """\
The main website for pip is `pip.openplans.org
<http://pip.openplans.org>`_
"""
long_description = long_description + open(index_filename).read().split('split here', 1)[1]
if sys.platform == 'win32':
kw = dict(entry_points=dict(console_scripts=['pip:pip:main']))
else:
kw = dict(scripts=['scripts/pip'])
setup(name='pip',
version=version,
description="pip installs packages. Python packages. An easy_install replacement",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Build Tools',
],
keywords='easy_install distutils setuptools egg virtualenv',
author='The Open Planning Project',
author_email='python-virtualenv@groups.google.com',
url='http://pip.openplans.org',
license='MIT',
py_modules=['pip'],
**kw)