Skip to content

Commit

Permalink
Fix reStructuredText formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
leovp committed May 12, 2016
1 parent 2fdbe0c commit 7a55d68
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
steamfiles
==========

| |Build Status|
.. image:: https://badge.fury.io/py/steamfiles.svg
:target: http://badge.fury.io/py/steamfiles
:alt: Latest version

.. image:: https://travis-ci.org/leovp/steamfiles.svg?branch=master
:target: https://travis-ci.org/leovp/steamfiles
:alt: Travis-CI

| Python library for parsing the most common Steam file formats.
| The library has a familiar JSON-like interface: ``load()`` / ``loads()`` for loading the data,
| and ``dump()`` / ``dumps()`` for saving the data back to the file.
Expand All @@ -22,7 +29,7 @@ Format support
Quickstart
----------

``steamfiles`` requires Python 3.3+
`steamfiles` requires Python 3.3+

Install the latest stable version:

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

Import a module for your desired format:
::

# Use one of these, or all at once!
from steamfiles import acf
from steamfiles import appinfo
from steamfiles import manifest

Easily load data, modify it and dump back:
::

with open('appinfo.vdf', 'rb') as f:
data = appinfo.load(f)
Expand All @@ -56,9 +65,7 @@ Easily load data, modify it and dump back:
License
-------

``steamfiles`` is distributed under the terms of the MIT license.
`steamfiles` is distributed under the terms of the MIT license.

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

.. |Build Status| image:: https://travis-ci.org/leovp/steamfiles.svg?branch=master
:target: https://travis-ci.org/leovp/steamfiles
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(fname):

setuptools.setup(
name='steamfiles',
version='0.1.0',
version='0.1.1',
url='https://github.com/leovp/steamfiles',
license='MIT',

Expand Down

0 comments on commit 7a55d68

Please sign in to comment.