diff --git a/platypush/__init__.py b/platypush/__init__.py index bc86bf84..e646dc88 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -15,7 +15,7 @@ from .message.response import Response __author__ = 'Fabio Manganiello ' -__version__ = '0.6.8' +__version__ = '0.6.9' #-----------# diff --git a/requirements.txt b/requirements.txt index 1deb4e71..0f233f03 100644 --- a/requirements.txt +++ b/requirements.txt @@ -30,6 +30,9 @@ ouimeaux google-assistant-sdk[samples] google-assistant-library +# Last.FM scrobbler plugin support +pylast + # Flic buttons support # It doesn't come with a pip package nor a setup.py, # follow the instructions on github to get the flicd daemon diff --git a/setup.py b/setup.py index de65dabb..d6d88549 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ create_etc_dir() setup( name = "platypush", - version = "0.6.8", + version = "0.6.9", author = "Fabio Manganiello", author_email = "info@fabiomanganiello.com", description = ("Platypush service"), @@ -74,6 +74,7 @@ setup( 'Support for YouTube in the OMXPlayer plugin': ['youtube-dl'], 'Support for Google Assistant': ['google-assistant-library'], 'Support for most of the HTTP poll backends': ['python-dateutil'], + 'Support for Last.FM scrobbler plugin': ['pylast'], # 'Support for Flic buttons': ['git+ssh://git@github.com/50ButtonsEach/fliclib-linux-hci'] }, )