|
@ -48,18 +48,20 @@ source_suffix = '.rst' |
|
|
master_doc = 'index' |
|
|
master_doc = 'index' |
|
|
|
|
|
|
|
|
# General information about the project. |
|
|
# General information about the project. |
|
|
|
|
|
from steam import __version__, __author__ |
|
|
|
|
|
|
|
|
project = u'steam' |
|
|
project = u'steam' |
|
|
copyright = u'2016, Rossen Georgiev' |
|
|
copyright = u'2016, %s' % __author__ |
|
|
author = u'Rossen Georgiev' |
|
|
author = __author__ |
|
|
|
|
|
|
|
|
# The version info for the project you're documenting, acts as replacement for |
|
|
# The version info for the project you're documenting, acts as replacement for |
|
|
# |version| and |release|, also used in various other places throughout the |
|
|
# |version| and |release|, also used in various other places throughout the |
|
|
# built documents. |
|
|
# built documents. |
|
|
# |
|
|
|
|
|
# The short X.Y version. |
|
|
# The short X.Y version. |
|
|
version = u'0.6.0' |
|
|
version = __version__ |
|
|
# The full version, including alpha/beta/rc tags. |
|
|
# The full version, including alpha/beta/rc tags. |
|
|
release = u'0.6.0a' |
|
|
release = __version__ |
|
|
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation |
|
|
# The language for content autogenerated by Sphinx. Refer to documentation |
|
|
# for a list of supported languages. |
|
|
# for a list of supported languages. |
|
@ -286,3 +288,6 @@ texinfo_documents = [ |
|
|
|
|
|
|
|
|
# If true, do not generate a @detailmenu in the "Top" node's menu. |
|
|
# If true, do not generate a @detailmenu in the "Top" node's menu. |
|
|
#texinfo_no_detailmenu = False |
|
|
#texinfo_no_detailmenu = False |
|
|
|
|
|
|
|
|
|
|
|
# AUTODOC |
|
|
|
|
|
autodoc_member_order = 'bysource' |
|
|