Added mongodict as an extra requirement.
This commit is contained in:
14
setup.py
14
setup.py
@@ -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},
|
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user