Merge pull request #188 from kuba/bugs/152

Magical fix for #152 (M2Crypto install dependency order)
This commit is contained in:
James Kasten
2015-01-24 20:01:32 -08:00
+3 -1
View File
@@ -5,7 +5,6 @@ from setuptools import setup
install_requires = [ install_requires = [
'argparse', 'argparse',
'jsonschema', 'jsonschema',
'M2Crypto',
'mock', 'mock',
'pycrypto', 'pycrypto',
'python-augeas', 'python-augeas',
@@ -13,6 +12,9 @@ install_requires = [
'requests', 'requests',
'zope.component', 'zope.component',
'zope.interface', 'zope.interface',
# order of items in install_requires DOES matter and M2Crypto has
# to go last, see #152
'M2Crypto',
] ]
docs_extras = [ docs_extras = [