blob: bc2270c0d3264919c6874e87614c46c52e844c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!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 *
if __name__ == '__main__':
print >>sys.stderr, "NOTE: python -m easy_install is deprecated."
print >>sys.stderr, "Please use the 'easy_install' command instead."
print >>sys.stderr
main(sys.argv[1:])
|