diff options
author | PJ Eby <distutils-sig@python.org> | 2005-06-12 21:47:34 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-06-12 21:47:34 +0000 |
commit | 26a5ebfbad61a20d1011dd14585f86bde34211bb (patch) | |
tree | 55e3f2f04d74ebfc0cd187be3035f74eb7b1618c /setup.py | |
parent | 5bf51fa29ddefee5ff82a52b9c14420f70401779 (diff) | |
download | external_python_setuptools-26a5ebfbad61a20d1011dd14585f86bde34211bb.tar.gz external_python_setuptools-26a5ebfbad61a20d1011dd14585f86bde34211bb.tar.bz2 external_python_setuptools-26a5ebfbad61a20d1011dd14585f86bde34211bb.zip |
Add 'ez_setup' bootstrap installer. Prep for 0.4a2 release.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041054
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,10 +1,8 @@ #!/usr/bin/env python """Distutils setup file, used to install or test 'setuptools'""" -VERSION = "0.4a1" -import sys +VERSION = "0.4a2" from setuptools import setup, find_packages, Require -PYVER = sys.version[:3] setup( name="setuptools", @@ -26,7 +24,7 @@ setup( "download mirrors, or from Python Eggs. Been looking for a CPAN " "clone for Python? When combined with PyPI, this gets pretty darn " "close. See the home page and download page for details and docs.", - + keywords = "CPAN PyPI distutils eggs package management", url = "http://peak.telecommunity.com/PythonEggs", download_url = "http://peak.telecommunity.com/DevCenter/EasyInstall", @@ -39,10 +37,12 @@ setup( Require('PyUnit', None, 'unittest', "http://pyunit.sf.net/"), ], + + packages = find_packages(), py_modules = ['pkg_resources', 'easy_install'], scripts = ['easy_install.py'], - extra_path = ('setuptools', 'setuptools-%s-py%s.egg' % (VERSION,PYVER)), + extra_path = ('setuptools', 'setuptools-%s.egg' % VERSION), classifiers = [f.strip() for f in """ Development Status :: 3 - Alpha |