How does one pip install with all extras? I'm aware that doing something like:
pip install -e .[docs,tests,others]
is an option. But, is it possible to do something like:
pip install -e .[all]
This question is similar to setup.py/setup.cfg install all extras. However, the answer there requires that the setup.cfg file be edited. Is it possible to do it without modifying setup.py or setup.cfg?