|
Last change
on this file since 920 was
659,
checked in by nbozon, 11 years ago
|
|
Massive update of zoo docs
|
-
Property svn:executable set to
*
|
|
File size:
371 bytes
|
| Line | |
|---|
| 1 | """Sphinx ReadTheDocs theme. |
|---|
| 2 | |
|---|
| 3 | From https://github.com/ryan-roemer/sphinx-bootstrap-theme. |
|---|
| 4 | |
|---|
| 5 | """ |
|---|
| 6 | import os |
|---|
| 7 | |
|---|
| 8 | VERSION = (0, 1, 7) |
|---|
| 9 | |
|---|
| 10 | __version__ = ".".join(str(v) for v in VERSION) |
|---|
| 11 | __version_full__ = __version__ |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | def get_html_theme_path(): |
|---|
| 15 | """Return list of HTML theme paths.""" |
|---|
| 16 | cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) |
|---|
| 17 | return cur_dir |
|---|
Note: See
TracBrowser
for help on using the repository browser.