add python requests as requirement
This commit is contained in:
parent
925cb30e77
commit
3114e5b226
2 changed files with 2 additions and 1 deletions
|
@ -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`
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -35,6 +35,6 @@ setup(
|
|||
'onkyo',
|
||||
'denon'
|
||||
],
|
||||
install_requires=['flask', 'PyYAML'],
|
||||
install_requires=['requests', 'flask', 'PyYAML'],
|
||||
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue