Skip to content

Commit 0f9fa91

Browse files
committed
Make cryptography an optional install dependency
1 parent 2cc6a1d commit 0f9fa91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
packages=['flask_jwt_extended'],
1818
zip_safe=False,
1919
platforms='any',
20-
install_requires=['Flask', 'PyJWT', 'simplekv', 'cryptography'],
20+
install_requires=['Flask', 'PyJWT', 'simplekv'],
21+
extras_require={
22+
'asymmetric_crypto': ["cryptography"]
23+
}
2124
classifiers=[
2225
'Development Status :: 4 - Beta',
2326
'Environment :: Web Environment',

0 commit comments

Comments
 (0)