django-mfa3

multi factor authentication for django
git clone https://git.ce9e.org/django-mfa3.git

commit
a35618c6ed2d450df0fc6dfdc7b56598f581f06e
parent
d5f28408047eb6bdffc8b567e65890a56eaf8303
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-02-27 15:40
restrict qrcode

https://github.com/lincolnloop/python-qrcode/issues/317

Diffstat

M setup.py 8 +++++++-

1 files changed, 7 insertions, 1 deletions


diff --git a/setup.py b/setup.py

@@ -13,7 +13,13 @@ setup(
   13    13     license='MIT',
   14    14     packages=find_packages(exclude=['tests']),
   15    15     include_package_data=True,
   16    -1     install_requires=['pyotp', 'fido2>=1.0.0', 'qrcode', 'django>=2.2'],
   -1    16     install_requires=[
   -1    17         'pyotp',
   -1    18         'fido2>=1.0.0',
   -1    19         # https://github.com/lincolnloop/python-qrcode/issues/317
   -1    20         'qrcode<7.4',
   -1    21         'django>=2.2',
   -1    22     ],
   17    23     classifiers=[
   18    24         'Development Status :: 4 - Beta',
   19    25         'Environment :: Web Environment',