We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e3428 commit 555648fCopy full SHA for 555648f
1 file changed
README.rst
@@ -42,6 +42,23 @@ The crytography option is a good default.
42
$ pip install python-jose[pycryptodome]
43
$ pip install python-jose[pycrypto]
44
45
+Due to complexities with setuptools, the ``python-rsa`` and ``python-ecdsa`` libraries are always installed.
46
+If you use one of the custom backends and would like to clean up unneeded dependencies,
47
+you can remove the following dependencies for each backend:
48
+
49
+* ``cryptography``
50
51
+ * ``pip uninstall rsa ecdsa pyasn1``
52
53
+* ``pycrypto`` or ``pycryptodome``
54
55
+ * ``pip uninstall rsa``
56
57
+.. warning::
58
59
+ Uninstall carefully. Make sure that nothing else in your environment needs these
60
+ libraries before uninstalling them.
61
62
63
Usage
64
-----
0 commit comments