stianaske / pybotvac

Python module for interacting with Neato Botvac Connected vacuum robots.
MIT License
85 stars 44 forks source link

the `requests` dependency is missing in setup.py #35

Closed pezinek closed 5 years ago

pezinek commented 5 years ago

Hi,

When doing pip install pybotvac it fails to install the requests dependency. The problem is that the setup.py doesn't contain the install_requires directive, and even if the dependency is mentioned in requrements.txt this file is not analyzed by pip.

Please add following line to setup.py:

install_requires=['requests']