summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-03-20 22:28:38 +0000
committerPJ Eby <distutils-sig@python.org>2006-03-20 22:28:38 +0000
commitdae3df10d9c3e064f483b697b5f4f69387402c2b (patch)
treef74403600703c12b76a9a3e4447504af91bdaf09 /setup.py
parentd5309081b92d1a6c1cc5565fb84a9e4c367e43f9 (diff)
downloadpython-setuptools-git-dae3df10d9c3e064f483b697b5f4f69387402c2b.tar.gz
Added ``easy_install-N.N`` script(s) for convenience when using multiple
Python versions. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4043177
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 6fdeb1fb..ca6be4df 100755
--- a/setup.py
+++ b/setup.py
@@ -73,13 +73,13 @@ setup(
"depends.txt = setuptools.command.egg_info:warn_depends_obsolete",
],
"console_scripts":
- ["easy_install = setuptools.command.easy_install:main"],
+ ["easy_install = setuptools.command.easy_install:main",
+ "easy_install-%s = setuptools.command.easy_install:main"
+ % sys.version[:3]
+ ],
},
-
-
-
classifiers = [f.strip() for f in """
Development Status :: 3 - Alpha
Intended Audience :: Developers