We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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()
The text was updated successfully, but these errors were encountered:
Thank you for pointing this out, Nathan We will have a look at it and fix it
Sorry, something went wrong.
Should be fixed now with release 1.1.1
No branches or pull requests
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-dependenciesThe text was updated successfully, but these errors were encountered: