diff options
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 +} |