summaryrefslogtreecommitdiff
path: root/easy_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'easy_install.py')
-rwxr-xr-xeasy_install.py20
1 files changed, 3 insertions, 17 deletions
diff --git a/easy_install.py b/easy_install.py
index 4b204c47..d87e9840 100755
--- a/easy_install.py
+++ b/easy_install.py
@@ -1,19 +1,5 @@
-#!python
-"""\
-
-Easy Install
-------------
-
-A tool for doing automatic download/extract/build of distutils-based Python
-packages. For detailed documentation, see the accompanying EasyInstall.txt
-file, or visit the `EasyInstall home page`__.
-
-__ http://peak.telecommunity.com/DevCenter/EasyInstall
-"""
-
-import sys
-from setuptools.command.easy_install import *
+"""Run the EasyInstall command"""
if __name__ == '__main__':
- main(sys.argv[1:])
-
+ from setuptools.command.easy_install import main
+ main()