How can one manage to install extras_requires with pip when installing from a git repository ?
I know that you can do pip install project[extra] when th
pip install project[extra]
This also works when installing from a whl file so, for example, you can do:
whl
pip install path/to/myapp-0.0.1-py3-none-any.whl[extra1]
This is very far from clear from the docs, and not particularly intuitive.