diff options
Diffstat (limited to 'scripts/makedocs.py')
-rwxr-xr-x | scripts/makedocs.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/makedocs.py b/scripts/makedocs.py new file mode 100755 index 0000000..dcaa940 --- /dev/null +++ b/scripts/makedocs.py @@ -0,0 +1,15 @@ +#!/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,))
|