summaryrefslogtreecommitdiff
path: root/scripts/makedocs.py
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2010-02-13 04:59:32 +0000
committerFederico Di Gregorio <fog@initd.org>2010-02-14 00:39:49 +0100
commit8246b285637423ed859bf80885ffaf589df44d28 (patch)
tree6682f3a81add26b0ac25cceeb9236fda8d2d7e27 /scripts/makedocs.py
parente11199c4207f061336b34dd305a77ee52199af18 (diff)
downloadpsycopg2-8246b285637423ed859bf80885ffaf589df44d28.tar.gz
Removed files used by the Epydoc documentation.
Diffstat (limited to 'scripts/makedocs.py')
-rwxr-xr-xscripts/makedocs.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/makedocs.py b/scripts/makedocs.py
deleted file mode 100755
index dcaa940..0000000
--- a/scripts/makedocs.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-"""Build documentation and api."""
-
-import os
-
-EPYDOC = "python c:/programmi/python23/scripts/epydoc.py"
-PSYCOPG = "c:/programmi/python23/lib/site-packages/psycopg2"
-
-os.system("python ext2html.py ../doc/extensions.rst > ../doc/extensions.html")
-os.system("%s "
- "-o ../doc/api "
- "--css ../doc/api-screen.css "
- "--docformat restructuredtext "
- "%s"
- % (EPYDOC,PSYCOPG,))