From 101671ae44e1686680c80cd07b452aabeb88fb63 Mon Sep 17 00:00:00 2001 From: goodger Date: Sat, 20 Apr 2002 03:01:52 +0000 Subject: Initial revision git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@18 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- install.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 install.py (limited to 'install.py') diff --git a/install.py b/install.py new file mode 100755 index 000000000..be9ed238b --- /dev/null +++ b/install.py @@ -0,0 +1,20 @@ +#!/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() -- cgit v1.2.1 From 4cc798623cc64d7cd12d72105edb830ac7af07e6 Mon Sep 17 00:00:00 2001 From: goodger Date: Mon, 9 Jun 2003 21:26:31 +0000 Subject: clarification of public domain status git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@1409 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- install.py | 1 + 1 file changed, 1 insertion(+) (limited to 'install.py') diff --git a/install.py b/install.py index be9ed238b..ef3020b67 100755 --- a/install.py +++ b/install.py @@ -1,5 +1,6 @@ #!/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 -- cgit v1.2.1 From a08830080efe5963d421187be90bdcd8a3b53b87 Mon Sep 17 00:00:00 2001 From: goodger Date: Tue, 13 Jul 2004 15:57:13 +0000 Subject: clarify limitations of install.py git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@2428 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- install.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'install.py') diff --git a/install.py b/install.py index ef3020b67..1a71e433f 100755 --- a/install.py +++ b/install.py @@ -8,13 +8,19 @@ command:: python setup.py install -However, the shortcut lacks error checking! +However, the shortcut lacks error checking and command-line option +processing. If you need any kind of customization or help, please use +one of:: + + python setup.py install --help + python setup.py --help """ from distutils import core from setup import do_setup if __name__ == '__main__' : + print __doc__ core._setup_stop_after = 'config' dist = do_setup() dist.commands = ['install'] -- cgit v1.2.1