add python requests as requirement

This commit is contained in:
milaq 2019-07-17 15:15:31 +02:00
parent 925cb30e77
commit 3114e5b226
2 changed files with 2 additions and 1 deletions

View file

@ -41,6 +41,7 @@ Go ahead and test it with yours, and kindly report the result back :)
Python version: `3`
Python packages:
* `requests`
* `flask`
* `PyYAML`

View file

@ -35,6 +35,6 @@ setup(
'onkyo',
'denon'
],
install_requires=['flask', 'PyYAML'],
install_requires=['requests', 'flask', 'PyYAML'],
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
)