Is there a way to specify optional dependencies when using python setup.py develop?
For example, say I have this package:
pip install openwisp-utils[users]
How can I install openwisp-utils for development by telling setuptools to install the optional dependencies listed in extra_requires['users']?
I found an alternative to
python setup.py develop(which unfortunately doesn't seem to supportextra_requires):