diff options
Diffstat (limited to 'scripts/makedocs.py')
-rwxr-xr-x | scripts/makedocs.py | 15 |
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,))
|