I am writing a setup.pyscript and want to specify a dependency on a MySQL package:
requires=['requests', 'mock', 'GitPython', 'MySQL-python']
But MySQL-pythonit looks illegal for the installation tool, because it thinks that there -should be a version after , and it throws this error:
ValueError: expected list in brackets: '-python'
What can i do here?
Environment: Python 2.7.3; accurate 32
source
share