author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 19 May 2009 15:06:33 +0200 | |
branch | stable |
changeset 1869 | 642a1a120a92 |
parent 1808 | aa09e20dd8c0 |
child 1977 | 606923dff11b |
permissions | -rw-r--r-- |
"""generate list of modules for sphinx doc""" import sys EXCLUDE_DIRS = ('test', 'tests', 'examples', 'data', 'doc', '.hg', 'migration') if __name__ == '__main__': from logilab.common.sphinxutils import generate_modules_file gen = generate_modules_file(sys.argv[1:]) gen.set_docdir("cubicweb/doc/book/en") gen.make(['cubicweb', '/indexer', '/logilab', '/rql', '/yams'], EXCLUDE_DIRS)