mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-13 20:27:35 -04:00
19 lines
307 B
Python
19 lines
307 B
Python
#!/usr/bin/env python
|
|
import sys,re,os
|
|
|
|
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)
|
|
|
|
|
|
|