diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-01-02 15:23:41 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-01-02 15:23:41 -0500 |
commit | 5e3c9e1d2f70ab327a165eacd78b0ad9004e810d (patch) | |
tree | 0cfb04750ac66fe95d432e3a2c6089806300f85e /docs | |
parent | bb18796f01bf3f60afb07c585bc2a09a37e0b19e (diff) |
Added api docs for combox.events combox.silo.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/combox.events.rst | 8 | ||||
-rw-r--r-- | docs/api/combox.silo.rst | 6 | ||||
-rw-r--r-- | docs/api/index.rst | 2 | ||||
-rw-r--r-- | docs/conf.py | 5 |
4 files changed, 20 insertions, 1 deletions
diff --git a/docs/api/combox.events.rst b/docs/api/combox.events.rst new file mode 100644 index 0000000..8946427 --- /dev/null +++ b/docs/api/combox.events.rst @@ -0,0 +1,8 @@ +==================== +combox.events module +==================== + +.. automodule:: combox.events + :members: + :show-inheritance: + :inherited-members: diff --git a/docs/api/combox.silo.rst b/docs/api/combox.silo.rst new file mode 100644 index 0000000..39dd1f6 --- /dev/null +++ b/docs/api/combox.silo.rst @@ -0,0 +1,6 @@ +==================== +combox.silo module +==================== + +.. automodule:: combox.silo + :members: diff --git a/docs/api/index.rst b/docs/api/index.rst index 1c0a359..ea1399f 100644 --- a/docs/api/index.rst +++ b/docs/api/index.rst @@ -6,4 +6,6 @@ api reference :maxdepth: 2 combox.crypto + combox.events combox.file + combox.silo diff --git a/docs/conf.py b/docs/conf.py index 89600a9..04727fc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -300,4 +300,7 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = { + 'https://docs.python.org/': None, + 'https://pythonhosted.org/watchdog/': None +} |