Reputation: 8529
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']
?
Upvotes: 5
Views: 1300
Reputation: 8529
I found an alternative to python setup.py develop
(which unfortunately doesn't seem to support extra_requires
):
pip install -e .[users]
Upvotes: 4