Trying to install freepybox with pip fails with a "ModuleNotFoundError" if "requests" is not installed yet. This is due to the import of freepybox in setup.py, wich triggers the import of "requests" before it has been installed through the install_requires.
I changed the setup.py to read the version number directly from init.py, without importing, as is done in the setup.py of pip.
Trying to install freepybox with pip fails with a "ModuleNotFoundError" if "requests" is not installed yet. This is due to the import of freepybox in setup.py, wich triggers the import of "requests" before it has been installed through the install_requires.
I changed the setup.py to read the version number directly from init.py, without importing, as is done in the setup.py of pip.