commit | 069159b11390d2827380cd3bf9a90d4ff57527a0 | [log] [tgz] |
---|---|---|
author | Phillip J. Eby <pje@telecommunity.com> | Tue Apr 18 04:05:34 2006 +0000 |
committer | Phillip J. Eby <pje@telecommunity.com> | Tue Apr 18 04:05:34 2006 +0000 |
tree | 68b7af33b6aecb062376dddd6117adffa6d16533 | |
parent | e247e898464f421a8b9d41ef74aaaf6137876ebb [diff] [blame] |
Initial import of setuptools, with integrated tests.
diff --git a/Lib/easy_install.py b/Lib/easy_install.py new file mode 100644 index 0000000..b8b8412 --- /dev/null +++ b/Lib/easy_install.py
@@ -0,0 +1,6 @@ +"""Run the EasyInstall command""" + +if __name__ == '__main__': + from setuptools.command.easy_install import main + main() +