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

42 lines
1.3 KiB
Python

try:
from setuptools import setup
except ImportError:
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]
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'],
## FIXME: is this the best way? (Works with distutils, but
## don't we really require setuptools anyway?)
scripts=['scripts/pip'],
)