Browse Source

up v0.6.1; docs version from module version

pull/18/merge
Rossen Georgiev 9 years ago
parent
commit
3c19090144
  1. 15
      docs/conf.py
  2. 4
      steam/__init__.py

15
docs/conf.py

@ -48,18 +48,20 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
from steam import __version__, __author__
project = u'steam'
copyright = u'2016, Rossen Georgiev'
author = u'Rossen Georgiev'
copyright = u'2016, %s' % __author__
author = __author__
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'0.6.0'
version = __version__
# 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
# 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.
#texinfo_no_detailmenu = False
# AUTODOC
autodoc_member_order = 'bysource'

4
steam/__init__.py

@ -1,7 +1,7 @@
__version__ = "0.6.0"
__version__ = "0.6.1"
__author__ = "Rossen Georgiev"
version_info = (0, 6, 0)
version_info = (0, 6, 1)
from steam.steamid import SteamID
from steam.webapi import WebAPI

Loading…
Cancel
Save