Browse Source

link to latest docs in README

[ci skip]
pull/41/head
Rossen Georgiev 9 years ago
parent
commit
8fd2ae28e0
  1. 2
      README.rst
  2. 3
      setup.py

2
README.rst

@ -4,7 +4,7 @@ A python module for interacting with various parts of Steam_.
Supports Python ``2.7+`` and ``3.4+``.
Documentation: http://steam.readthedocs.io
Documentation: http://steam.readthedocs.io/en/latest
Main features
-------------

3
setup.py

@ -8,7 +8,8 @@ import sys
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()\
.replace('io/en/latest/?badge=latest', 'io/en/stable/?badge=stable')\
.replace('.io/en/latest', '.io/en/stable')\
.replace('?badge=latest', '?badge=stable')\
.replace('projects/steam/badge/?version=latest', 'projects/steam/badge/?version=stable')
with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f:
__version__ = f.readline().split('"')[1]

Loading…
Cancel
Save