summaryrefslogtreecommitdiff
path: root/scripts/makedocs.py
blob: dcaa940af3143f7277cd5eb8ee34653746c22c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,))