forked from platypush/platypush
Added pylast to the optional dependencies;
Version bump.
This commit is contained in:
parent
ac15e581ce
commit
0e6de85b8d
3 changed files with 6 additions and 2 deletions
|
@ -15,7 +15,7 @@ from .message.response import Response
|
||||||
|
|
||||||
|
|
||||||
__author__ = 'Fabio Manganiello <blacklight86@gmail.com>'
|
__author__ = 'Fabio Manganiello <blacklight86@gmail.com>'
|
||||||
__version__ = '0.6.8'
|
__version__ = '0.6.9'
|
||||||
|
|
||||||
#-----------#
|
#-----------#
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,9 @@ ouimeaux
|
||||||
google-assistant-sdk[samples]
|
google-assistant-sdk[samples]
|
||||||
google-assistant-library
|
google-assistant-library
|
||||||
|
|
||||||
|
# Last.FM scrobbler plugin support
|
||||||
|
pylast
|
||||||
|
|
||||||
# Flic buttons support
|
# Flic buttons support
|
||||||
# It doesn't come with a pip package nor a setup.py,
|
# It doesn't come with a pip package nor a setup.py,
|
||||||
# follow the instructions on github to get the flicd daemon
|
# follow the instructions on github to get the flicd daemon
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -32,7 +32,7 @@ create_etc_dir()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "platypush",
|
name = "platypush",
|
||||||
version = "0.6.8",
|
version = "0.6.9",
|
||||||
author = "Fabio Manganiello",
|
author = "Fabio Manganiello",
|
||||||
author_email = "info@fabiomanganiello.com",
|
author_email = "info@fabiomanganiello.com",
|
||||||
description = ("Platypush service"),
|
description = ("Platypush service"),
|
||||||
|
@ -74,6 +74,7 @@ setup(
|
||||||
'Support for YouTube in the OMXPlayer plugin': ['youtube-dl'],
|
'Support for YouTube in the OMXPlayer plugin': ['youtube-dl'],
|
||||||
'Support for Google Assistant': ['google-assistant-library'],
|
'Support for Google Assistant': ['google-assistant-library'],
|
||||||
'Support for most of the HTTP poll backends': ['python-dateutil'],
|
'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']
|
# 'Support for Flic buttons': ['git+ssh://git@github.com/50ButtonsEach/fliclib-linux-hci']
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue