aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-06-27 00:31:03 +0000
committerPJ Eby <distutils-sig@python.org>2005-06-27 00:31:03 +0000
commit643acd6ad1eb4aeebac199c91af001181c7786f3 (patch)
treed8eb4c9d9c85a24821fa728ed4fa1bbba1450e81 /setup.py
parent5ed7f988bca676d52388b7d0db6e540bfd1476f7 (diff)
downloadexternal_python_setuptools-643acd6ad1eb4aeebac199c91af001181c7786f3.tar.gz
external_python_setuptools-643acd6ad1eb4aeebac199c91af001181c7786f3.tar.bz2
external_python_setuptools-643acd6ad1eb4aeebac199c91af001181c7786f3.zip
EasyInstall/setuptools 0.5a4: significant new features, including automatic
installation of dependencies, the ability to specify dependencies in a setup script, and several new options to control EasyInstall's behavior. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041073
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 5b86a8c6..df9c9aec 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""Distutils setup file, used to install or test 'setuptools'"""
-VERSION = "0.5a3"
+VERSION = "0.5a4"
from setuptools import setup, find_packages, Require
setup(
@@ -42,7 +42,6 @@ setup(
packages = find_packages(),
py_modules = ['pkg_resources', 'easy_install'],
scripts = ['easy_install.py'],
- extra_path = ('setuptools', 'setuptools-%s.egg' % VERSION),
classifiers = [f.strip() for f in """
Development Status :: 3 - Alpha
@@ -80,3 +79,4 @@ setup(
+