Added mongodict as an extra requirement.

This commit is contained in:
Roland Hedberg
2013-03-05 09:34:08 +01:00
parent ebd6c96d71
commit f70050d74a

View File

@@ -62,10 +62,10 @@ setup(
"saml2/profile", "saml2/schema", "saml2/extension", "saml2/profile", "saml2/schema", "saml2/extension",
"saml2/attributemaps"], "saml2/attributemaps"],
package_dir = {'':'src'}, package_dir={'': 'src'},
package_data={'': ['xml/*.xml']}, package_data={'': ['xml/*.xml']},
classifiers = ["Development Status :: 4 - Beta", classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules"], "Topic :: Software Development :: Libraries :: Python Modules"],
@@ -78,17 +78,13 @@ setup(
'pytest', 'pytest',
#'pytest-coverage', #'pytest-coverage',
], ],
install_requires=install_requires, install_requires=install_requires,
extras_require={ extras_require={
'cjson': ['python-cjson'], 'cjson': ['python-cjson'],
'pyasn1': ['pyasn1'],
'pymongo': ['pymongo'], 'pymongo': ['pymongo'],
'python-memcached': ['python-memcached'] 'python-memcached': ['python-memcached'],
'mongodict': ['mongodict']
}, },
zip_safe=False, zip_safe=False,
cmdclass={'test': PyTest},
cmdclass = {'test': PyTest},
) )