Upgraded to version 2.0

This commit is contained in:
Mohamed ElKalioby
2020-09-09 19:03:35 +03:00
parent 01a2766ef5
commit 4b19d95a7e
2 changed files with 5 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
# Change Log # Change Log
## 2.0 (work in progress) ## 2.0
* Dropped support to djangp-1.8 and Python 2.7 * Dropped support to djangp-1.8 and Python 2.7
* Added: never-cache decorator * Added: never-cache decorator
* Fixes to Make Email Method More Robust
* Addresses several structure and style issues with TOTP and Email dialogs * Addresses several structure and style issues with TOTP and Email dialogs
* Updated to fido2 0.8.1 * Updated to fido2 0.8.1

View File

@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
setup( setup(
name='django-mfa2', name='django-mfa2',
version='1.9.1', version='2.0.0',
description='Allows user to add 2FA to their accounts', description='Allows user to add 2FA to their accounts',
long_description=open("README.md").read(), long_description=open("README.md").read(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@@ -27,7 +27,7 @@ setup(
'fido2 == 0.8.1', 'fido2 == 0.8.1',
'jsonLookup' 'jsonLookup'
], ],
python_requires=">2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", python_requires=">=3.5",
include_package_data=True, include_package_data=True,
zip_safe=False, # because we're including static files zip_safe=False, # because we're including static files
classifiers=[ classifiers=[
@@ -37,6 +37,7 @@ setup(
"Framework :: Django :: 1.11", "Framework :: Django :: 1.11",
"Framework :: Django :: 2.0", "Framework :: Django :: 2.0",
"Framework :: Django :: 2.1", "Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",