Last change
on this file since 919 was
919,
checked in by jemian, 11 years ago
|
refs #8, rest for the night
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
373 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | # $Id: starter.py 919 2012-06-12 22:10:09Z jemian $ |
---|
4 | |
---|
5 | ''' |
---|
6 | Builds Sphinx documentation |
---|
7 | (and provides a way to use the source-code debugger for the process) |
---|
8 | ''' |
---|
9 | |
---|
10 | import sphinx, sys |
---|
11 | |
---|
12 | if __name__ == '__main__': |
---|
13 | args = [] |
---|
14 | args.append(sys.argv[0]) |
---|
15 | args = args + "-b html".split() |
---|
16 | args = args + "-d _build/doctrees .".split() |
---|
17 | args = args + "_build/html".split() |
---|
18 | sphinx.main(args) |
---|
Note: See
TracBrowser
for help on using the repository browser.