pip/setup.py

42 lines
1.6 KiB
Python
Raw Normal View History

import sys
2008-10-16 00:02:57 +02:00
import os
from setuptools import setup
2008-10-16 00:02:57 +02:00
2010-11-29 19:22:36 +01:00
version = "0.8.2"
2008-10-16 00:02:57 +02:00
doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
index_filename = os.path.join(doc_dir, 'index.txt')
2010-04-16 22:10:45 +02:00
long_description = """\
The main website for pip is `pip.openplans.org
2009-01-29 19:18:12 +01:00
<http://pip.openplans.org>`_. You can also install
2010-04-16 22:10:45 +02:00
the `in-development version <http://bitbucket.org/ianb/pip/get/tip.gz#egg=pip-dev>`_
2009-01-29 19:18:12 +01:00
of pip with ``easy_install pip==dev``.
2008-10-16 00:02:57 +02:00
"""
long_description = long_description + open(index_filename).read().split('split here', 1)[1]
setup(name='pip',
2008-10-16 00:02:57 +02:00
version=version,
description="pip installs packages. Python packages. An easy_install replacement",
2008-10-16 00:02:57 +02:00
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',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
2008-10-16 00:02:57 +02:00
],
keywords='easy_install distutils setuptools egg virtualenv',
2010-05-28 00:02:49 +02:00
author='Ian Bicking',
2008-10-16 00:02:57 +02:00
author_email='python-virtualenv@groups.google.com',
url='http://pip.openplans.org',
2008-10-16 00:02:57 +02:00
license='MIT',
packages=['pip', 'pip.commands', 'pip.vcs'],
entry_points=dict(console_scripts=['pip=pip:main', 'pip-%s=pip:main' % sys.version[:3]]),
test_suite='nose.collector',
tests_require=['nose', 'virtualenv', 'scripttest', 'mock'],
zip_safe=False)