Skip to content

Commit

Permalink
wip docu
Browse files Browse the repository at this point in the history
  • Loading branch information
semiversus committed Oct 1, 2018
1 parent f23f7ac commit c690dc5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion broqer/publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Publisher():
* ``.subscribe(subscriber)`` to subscribe for events on this publisher
* ``.unsubscribe(subscriber)`` to unsubscribe
* ``.get()`` to get the current state (will raise ValueError if not
stateful)
stateful)
When implementing a Publisher use the following methods:
Expand Down
10 changes: 10 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
copyright = u'2018, Günther Jena'
author = u'Günther Jena'
version = '0.9.0'
github_url = 'https://github.com/semiversus/python-broqer'

extensions = [
'sphinx.ext.autodoc',
Expand All @@ -21,6 +22,15 @@
html_theme = 'sphinx_rtd_theme'
htmlhelp_basename = 'broqer'

html_context = {
"display_github": True, # Add 'Edit on Github' link instead of 'View page source'
"github_user": "semiversus",
"github_repo": project,
"github_version": "master",
"conf_py_path": "/docs/",
"source_suffix": source_suffix,
}

latex_documents = [
(master_doc, 'python-broqer.tex', 'python-broqer Documentation',
u'Günther Jena', 'manual'),
Expand Down

0 comments on commit c690dc5

Please sign in to comment.