summaryrefslogtreecommitdiff
path: root/docutils/install.py
diff options
context:
space:
mode:
Diffstat (limited to 'docutils/install.py')
-rwxr-xr-xdocutils/install.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/docutils/install.py b/docutils/install.py
deleted file mode 100755
index ef3020b67..000000000
--- a/docutils/install.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env python
-# $Id$
-# Copyright: This file has been placed in the public domain.
-
-"""
-This is a quick & dirty installation shortcut. It is equivalent to the
-command::
-
- python setup.py install
-
-However, the shortcut lacks error checking!
-"""
-
-from distutils import core
-from setup import do_setup
-
-if __name__ == '__main__' :
- core._setup_stop_after = 'config'
- dist = do_setup()
- dist.commands = ['install']
- dist.run_commands()