Skip to content

Commit 29c0654

Browse files
committed
doc: style changes to the sphinx html output
1 parent eba9109 commit 29c0654

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

doc/conf.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
## notice and this notice are preserved. This file is offered as-is,
99
## without any warranty.
1010

11+
import datetime
1112
import sys
1213

1314
sys.path.insert(0, '../microscope')
@@ -17,10 +18,11 @@
1718
## pkg_resources to avoid duplication?
1819
author = 'Micron Oxford'
1920
project = 'Microscope'
20-
copyright = '2017, Micron Oxford'
2121

22+
copyright = '%s, %s' %(datetime.datetime.now().year, author)
2223

2324
master_doc = 'index'
25+
nitpicky = True
2426

2527

2628
extensions = [
@@ -47,3 +49,9 @@
4749

4850
html_theme = 'agogo'
4951
html_static_path = ['_static']
52+
html_title = 'Python Microscope documentation'
53+
html_short_title = 'import microscope'
54+
html_show_copyright = False
55+
html_show_sphinx = False
56+
html_copy_source = False
57+
html_show_sourcelink = False

0 commit comments

Comments
 (0)