Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 7a55d68

Browse files
committed
Fix reStructuredText formatting issues
1 parent 2fdbe0c commit 7a55d68

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

README.rst

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
steamfiles
22
==========
33

4-
| |Build Status|
4+
.. image:: https://badge.fury.io/py/steamfiles.svg
5+
:target: http://badge.fury.io/py/steamfiles
6+
:alt: Latest version
7+
8+
.. image:: https://travis-ci.org/leovp/steamfiles.svg?branch=master
9+
:target: https://travis-ci.org/leovp/steamfiles
10+
:alt: Travis-CI
11+
512
| Python library for parsing the most common Steam file formats.
613
| The library has a familiar JSON-like interface: ``load()`` / ``loads()`` for loading the data,
714
| and ``dump()`` / ``dumps()`` for saving the data back to the file.
@@ -22,7 +29,7 @@ Format support
2229
Quickstart
2330
----------
2431

25-
``steamfiles`` requires Python 3.3+
32+
`steamfiles` requires Python 3.3+
2633

2734
Install the latest stable version:
2835

@@ -32,13 +39,15 @@ Install the latest stable version:
3239

3340
Import a module for your desired format:
3441
::
42+
3543
# Use one of these, or all at once!
3644
from steamfiles import acf
3745
from steamfiles import appinfo
3846
from steamfiles import manifest
3947

4048
Easily load data, modify it and dump back:
4149
::
50+
4251
with open('appinfo.vdf', 'rb') as f:
4352
data = appinfo.load(f)
4453
@@ -56,9 +65,7 @@ Easily load data, modify it and dump back:
5665
License
5766
-------
5867

59-
``steamfiles`` is distributed under the terms of the MIT license.
68+
`steamfiles` is distributed under the terms of the MIT license.
6069

61-
See `LICENSE <LICENSE>`__ file for all the details.
70+
See the bundled `LICENSE <https://github.com/leovp/steamfiles/blob/master/LICENSE>`_ file for more details.
6271

63-
.. |Build Status| image:: https://travis-ci.org/leovp/steamfiles.svg?branch=master
64-
:target: https://travis-ci.org/leovp/steamfiles

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(fname):
1010

1111
setuptools.setup(
1212
name='steamfiles',
13-
version='0.1.0',
13+
version='0.1.1',
1414
url='https://github.com/leovp/steamfiles',
1515
license='MIT',
1616

0 commit comments

Comments
 (0)