summaryrefslogtreecommitdiff
path: root/docutils/install.py
diff options
context:
space:
mode:
author(no author) <(no author)@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2002-05-01 02:53:07 +0000
committer(no author) <(no author)@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2002-05-01 02:53:07 +0000
commit9e0c8b3997b83945c58c5ede77278f205b97d03e (patch)
tree5fdea7c382ce0fdcc49bc2bc0f9e8faaa7f4effc /docutils/install.py
parent6a5511292419427c9a4c9258b71c47d072a02878 (diff)
downloaddocutils-tibs.tar.gz
This commit was manufactured by cvs2svn to create branch 'tibs'.tibs
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/tibs@63 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/install.py')
-rwxr-xr-xdocutils/install.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/docutils/install.py b/docutils/install.py
deleted file mode 100755
index be9ed238b..000000000
--- a/docutils/install.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python
-# $Id$
-
-"""
-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()