run black on example and setup.py

This commit is contained in:
Tobias Bengfort
2021-06-23 08:23:48 +02:00
parent d54cd20d9b
commit 6b132683a7
5 changed files with 115 additions and 108 deletions

View File

@@ -3,33 +3,32 @@
from setuptools import find_packages, setup
setup(
name='django-mfa2',
version='2.2.0',
description='Allows user to add 2FA to their accounts',
name="django-mfa2",
version="2.2.0",
description="Allows user to add 2FA to their accounts",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author='Mohamed El-Kalioby',
author_email = 'mkalioby@mkalioby.com',
url = 'https://github.com/mkalioby/django-mfa2/',
download_url='https://github.com/mkalioby/django-mfa2/',
license='MIT',
author="Mohamed El-Kalioby",
author_email="mkalioby@mkalioby.com",
url="https://github.com/mkalioby/django-mfa2/",
download_url="https://github.com/mkalioby/django-mfa2/",
license="MIT",
packages=find_packages(),
install_requires=[
'django >= 2.0',
'jsonfield',
'simplejson',
'pyotp',
'python-u2flib-server',
'ua-parser',
'user-agents',
'python-jose',
'fido2 == 0.9.1',
'jsonLookup'
],
"django >= 2.0",
"jsonfield",
"simplejson",
"pyotp",
"python-u2flib-server",
"ua-parser",
"user-agents",
"python-jose",
"fido2 == 0.9.1",
"jsonLookup",
],
python_requires=">=3.5",
include_package_data=True,
zip_safe=False, # because we're including static files
zip_safe=False, # because we're including static files
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
@@ -48,5 +47,5 @@ setup(
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
]
],
)