|
28 | 28 | # version is used. |
29 | 29 | sys.path.insert(0, project_root) |
30 | 30 |
|
31 | | -import tri.table |
32 | | -import tri.query |
33 | | -import tri.form |
| 31 | +import tri_table |
| 32 | +import tri_query |
| 33 | +import tri_form |
34 | 34 |
|
35 | | -from tri.declarative import generate_rst_docs |
| 35 | +from tri_declarative import generate_rst_docs |
36 | 36 |
|
37 | | -generate_rst_docs('.', [tri.table.Table, tri.table.Column, tri.query.Query, tri.query.Variable, tri.form.Form, tri.form.Field, tri.form.Link], (tri.form.MISSING, tri.query.MISSING)) |
| 37 | +generate_rst_docs('.', [tri_table.Table, tri_table.Column, tri_query.Query, tri_query.Variable, tri_form.Form, tri_form.Field, tri_form.Link], (tri_form.MISSING, tri_query.MISSING)) |
38 | 38 |
|
39 | 39 | # -- General configuration ----------------------------------------------------- |
40 | 40 |
|
|
62 | 62 | master_doc = 'index' |
63 | 63 |
|
64 | 64 | # General information about the project. |
65 | | -project = u'tri.table' |
| 65 | +project = u'tri_table' |
66 | 66 | copyright = u'2015, Anders Hovmöller' |
67 | 67 |
|
68 | 68 | # The version info for the project you're documenting, acts as replacement for |
69 | 69 | # |version| and |release|, also used in various other places throughout the |
70 | 70 | # built documents. |
71 | 71 | # |
72 | 72 | # The short X.Y version. |
73 | | -version = tri.table.__version__ |
| 73 | +version = tri_table.__version__ |
74 | 74 | # The full version, including alpha/beta/rc tags. |
75 | | -release = tri.table.__version__ |
| 75 | +release = tri_table.__version__ |
76 | 76 |
|
77 | 77 | # The language for content autogenerated by Sphinx. Refer to documentation |
78 | 78 | # for a list of supported languages. |
|
190 | 190 | #html_file_suffix = None |
191 | 191 |
|
192 | 192 | # Output file base name for HTML help builder. |
193 | | -htmlhelp_basename = 'tri.tablesdoc' |
| 193 | +htmlhelp_basename = 'tri_tablesdoc' |
194 | 194 |
|
195 | 195 |
|
196 | 196 | # -- Options for LaTeX output -------------------------------------------------- |
|
209 | 209 | # Grouping the document tree into LaTeX files. List of tuples |
210 | 210 | # (source start file, target name, title, author, documentclass [howto/manual]). |
211 | 211 | latex_documents = [ |
212 | | - ('index', 'tri.table.tex', u'tri.table Documentation', |
| 212 | + ('index', 'tri_table.tex', u'tri_table Documentation', |
213 | 213 | u'Anders Hovmöller', 'manual'), |
214 | 214 | ] |
215 | 215 |
|
|
239 | 239 | # One entry per manual page. List of tuples |
240 | 240 | # (source start file, name, description, authors, manual section). |
241 | 241 | man_pages = [ |
242 | | - ('index', 'tri.table', u'tri.table Documentation', |
| 242 | + ('index', 'tri_table', u'tri_table Documentation', |
243 | 243 | [u'Anders Hovmöller'], 1) |
244 | 244 | ] |
245 | 245 |
|
|
253 | 253 | # (source start file, target name, title, author, |
254 | 254 | # dir menu entry, description, category) |
255 | 255 | texinfo_documents = [ |
256 | | - ('index', 'tri.table', u'tri.table Documentation', |
257 | | - u'Anders Hovmöller', 'tri.table', 'One line description of project.', |
| 256 | + ('index', 'tri_table', u'tri_table Documentation', |
| 257 | + u'Anders Hovmöller', 'tri_table', 'One line description of project.', |
258 | 258 | 'Miscellaneous'), |
259 | 259 | ] |
260 | 260 |
|
|
0 commit comments