Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JrooTJunior committed Jul 24, 2017
1 parent b687a86 commit 55069c7
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 28 deletions.
16 changes: 0 additions & 16 deletions docs/source/aiogram.bot.rst

This file was deleted.

6 changes: 3 additions & 3 deletions docs/source/aiogram.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ Submodules

.. toctree::

aiogram.bot
aiogram.types
aiogram.dispatcher
bot/bot
bot/types
dispatcher/
4 changes: 4 additions & 0 deletions docs/source/bot/additional.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Bot object
==========

.. autoclass:: aiogram.bot.bot.Bot
4 changes: 4 additions & 0 deletions docs/source/bot/base.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
BaseBot
=======

.. autoclass:: aiogram.bot.base.BaseBot
9 changes: 9 additions & 0 deletions docs/source/bot/bot.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Bot object
==========

For detailed information about parameters read the official `Telegram Bot API reference <https://core.telegram.org/bots/api>`_

.. toctree::

base
additional
File renamed without changes.
18 changes: 9 additions & 9 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
#
import os
import sys

sys.path.insert(0, os.path.abspath('../..'))

import aiogram


# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand All @@ -39,7 +39,6 @@
'sphinx.ext.autodoc',
]


# Add any paths that contain templates here, relative to this directory.
templates_path = ['templates']

Expand Down Expand Up @@ -84,7 +83,6 @@
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True


# -- Options for HTML output ----------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand All @@ -103,13 +101,11 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['static']


# -- Options for HTMLHelp output ------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'aiogramdoc'


# -- Options for LaTeX output ---------------------------------------------

latex_elements = {
Expand Down Expand Up @@ -138,7 +134,6 @@
'Illemius / Alex Root Junior', 'manual'),
]


# -- Options for manual page output ---------------------------------------

# One entry per manual page. List of tuples
Expand All @@ -148,7 +143,6 @@
[author], 1)
]


# -- Options for Texinfo output -------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
Expand All @@ -160,5 +154,11 @@
'Miscellaneous'),
]



autoclass_content = "both"
autodoc_member_order = "bysource"
autodoc_default_flags = [
"members",
"no-undoc-members",
"show-inheritance",
"inherited-members",
]
File renamed without changes.

0 comments on commit 55069c7

Please sign in to comment.