* add a LaTeX-nbsp (~) before a LaTeX-newline to avoid "LaTeX-Error no line to end...
[docutils.git] / install.py
blobbe9ed238b401784250bf6e2974316cadc418d99d
1 #!/usr/bin/env python
2 # $Id$
4 """
5 This is a quick & dirty installation shortcut. It is equivalent to the
6 command::
8 python setup.py install
10 However, the shortcut lacks error checking!
11 """
13 from distutils import core
14 from setup import do_setup
16 if __name__ == '__main__' :
17 core._setup_stop_after = 'config'
18 dist = do_setup()
19 dist.commands = ['install']
20 dist.run_commands()