3 # Copyright: This file has been placed in the public domain.
6 This is a quick & dirty installation shortcut. It is equivalent to the
9 python setup.py install
11 However, the shortcut lacks error checking and command-line option
12 processing. If you need any kind of customization or help, please use
15 python setup.py install --help
16 python setup.py --help
19 from distutils
import core
20 from setup
import do_setup
22 if __name__
== '__main__' :
24 core
._setup
_stop
_after
= 'config'
26 dist
.commands
= ['install']