mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-23 09:23:43 +03:00
16 lines
450 B
Python
16 lines
450 B
Python
|
#!/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,))
|