Closed neffmallon closed 4 years ago
Currently, setup.py doesn't include the package dependencies, so they don't automatically install when using pip install.
pip install
To fix this, use the install_requires kwarg in the setup() call in setup.py. Documentation and examples are available here: https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-dependencies
install_requires
setup()
Thank you for pointing this out, Nathan We will have a look at it and fix it
Should be fixed now with release 1.1.1
Currently, setup.py doesn't include the package dependencies, so they don't automatically install when using
pip install
.To fix this, use the
install_requires
kwarg in thesetup()
call in setup.py. Documentation and examples are available here: https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-dependencies