Comments on underscore.
[docutils.git] / install.py
blobef3020b67f1d2b1f39b575190a3500e7a15bc5d8
1 #!/usr/bin/env python
2 # $Id$
3 # Copyright: This file has been placed in the public domain.
5 """
6 This is a quick & dirty installation shortcut. It is equivalent to the
7 command::
9 python setup.py install
11 However, the shortcut lacks error checking!
12 """
14 from distutils import core
15 from setup import do_setup
17 if __name__ == '__main__' :
18 core._setup_stop_after = 'config'
19 dist = do_setup()
20 dist.commands = ['install']
21 dist.run_commands()