aboutsummaryrefslogtreecommitdiffstats
path: root/easy_install.py
blob: 4b204c471d2994b76fc3b0a6e63b9d53c373aa90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!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__':
    main(sys.argv[1:])