I depend on the package python-memcached but its name breaks the python naming conventions and consequently it breaks the setup function in core.py.
setup(name='foo',
version='1.0',
requires = ['python-memcached','psycopg2']
)
This breaks setup. How can I depend on the package? Is it possible to rename it locally or create an alias?
python-memcached‘s module name ismemcache, hence use:Hope that helps.
Another alternative would be to use
pylibmcinstead; more info on the latter it available here http://pypi.python.org/pypi/pylibmc