How do I specify optional dependencies in python\'s setup.py ?
setup.py
Here\'s my stab at specifying an optional dependency for an open source library of mine b
You've got an incorrect keyword. It's extras_require, and it's supposed to be a dict.
extras_require
setup( name="django-cherrypy", ... extras_require = { 'mysterious_feature_x': ["newrelic"] } )