Skip to content

Commit 873807d

Browse files
author
Gasper Zejn
committed
Replace default backend for RSA to Python implementation provided by rsa
package.
1 parent 27b1f4e commit 873807d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
import os
4-
import sys
54
import jose
65

76
from setuptools import setup
@@ -25,6 +24,7 @@ def get_packages(package):
2524
extras_require = {
2625
'cryptography': ['cryptography'],
2726
'pycrypto': ['pycrypto >=2.6.0, <2.7.0'],
27+
'pycryptodome': ['pycryptodome >=3.3.1, <4.0.0'],
2828
}
2929

3030

@@ -55,5 +55,5 @@ def get_packages(package):
5555
'Topic :: Utilities',
5656
],
5757
extras_require=extras_require,
58-
install_requires=['six <2.0', 'ecdsa <1.0', 'future <1.0', 'pycryptodome >=3.3.1, <4.0.0']
58+
install_requires=['six <2.0', 'ecdsa <1.0', 'rsa', 'future <1.0']
5959
)

0 commit comments

Comments
 (0)