summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst7
-rwxr-xr-xsetup.py2
2 files changed, 4 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index e7c191d..1adab22 100644
--- a/README.rst
+++ b/README.rst
@@ -9,13 +9,12 @@ features of the player, just as the lua interface does.
Installation
------------
-Via PyPI
-~~~~~~~~
-
.. code:: bash
+
pip install python-mpv
- ...though you can also realistically just copy `mpv.py`_ into your project as it's all nicely contained in one file.
+
+...though you can also realistically just copy `mpv.py`_ into your project as it's all nicely contained in one file.
Usage
-----
diff --git a/setup.py b/setup.py
index 61c2061..675e7c3 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from setuptools import setup, find_packages
setup(
name = 'python-mpv',
- version = '0.2',
+ version = '0.2.1',
py_modules = ['mpv'],
description = ('A python interface to the mpv media player'),
url = 'https://github.com/jaseg/python-mpv',