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.
Hi,
When doing
pip install pybotvac
it fails to install therequests
dependency. The problem is that the setup.py doesn't contain theinstall_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']