forked from platypush/platypush
httplib2 should be an explicit dependency for Google integrations.
Plus, some misc LINT/Black chores.
This commit is contained in:
parent
a7bb81553c
commit
966a6ce29e
12 changed files with 184 additions and 89 deletions
12
setup.py
12
setup.py
|
@ -110,6 +110,7 @@ setup(
|
|||
# Support for Google text2speech plugin
|
||||
'google-tts': [
|
||||
'oauth2client',
|
||||
'httplib2',
|
||||
'google-api-python-client',
|
||||
'google-auth',
|
||||
'google-cloud-texttospeech',
|
||||
|
@ -130,7 +131,12 @@ setup(
|
|||
'google-assistant-legacy': ['google-assistant-library', 'google-auth'],
|
||||
'google-assistant': ['google-assistant-sdk[samples]', 'google-auth'],
|
||||
# Support for the Google APIs
|
||||
'google': ['oauth2client', 'google-auth', 'google-api-python-client'],
|
||||
'google': [
|
||||
'oauth2client',
|
||||
'google-auth',
|
||||
'google-api-python-client',
|
||||
'httplib2',
|
||||
],
|
||||
# Support for Last.FM scrobbler plugin
|
||||
'lastfm': ['pylast'],
|
||||
# Support for custom hotword detection
|
||||
|
@ -213,9 +219,9 @@ setup(
|
|||
# Support for Trello integration
|
||||
'trello': ['py-trello'],
|
||||
# Support for Google Pub/Sub
|
||||
'google-pubsub': ['google-cloud-pubsub', 'google-auth'],
|
||||
'google-pubsub': ['google-cloud-pubsub', 'google-auth', 'httplib2'],
|
||||
# Support for Google Translate
|
||||
'google-translate': ['google-cloud-translate', 'google-auth'],
|
||||
'google-translate': ['google-cloud-translate', 'google-auth', 'httplib2'],
|
||||
# Support for keyboard/mouse plugin
|
||||
'inputs': ['pyuserinput'],
|
||||
# Support for Buienradar weather forecast
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue