mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-04 23:06:24 -04:00
25 lines
430 B
Python
25 lines
430 B
Python
#!/usr/bin/env python
|
|
import sys,re,os
|
|
|
|
print "Running txt2myt.py..."
|
|
execfile("txt2myt.py")
|
|
|
|
print "Generating docstring data"
|
|
execfile("compile_docstrings.py")
|
|
|
|
component_root = [
|
|
{'components': './components'},
|
|
{'content' : './content'}
|
|
]
|
|
doccomp = ['document_base.myt']
|
|
output = os.path.dirname(os.getcwd())
|
|
|
|
sys.path = ['./lib/'] + sys.path
|
|
|
|
import documentgen
|
|
|
|
documentgen.genall(doccomp, component_root, output)
|
|
|
|
|
|
|