Some PEP8

This commit is contained in:
KnugiHK
2021-07-10 22:01:04 +08:00
parent 3ed59ee051
commit ab42cad166
5 changed files with 27 additions and 18 deletions

View File

@@ -12,12 +12,13 @@ setuptools.setup(
version=version,
author="KnugiHK",
author_email="info@knugi.com",
description="A Whatsapp database parser that will give you the history of your Whatsapp conversations in HTML and JSON.",
description="A Whatsapp database parser that will give you the "
"history of your Whatsapp conversations in HTML and JSON.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KnugiHK/Whatsapp-Chat-Exporter",
packages=setuptools.find_packages(),
package_data = {
package_data={
'': ['whatsapp.html']
},
classifiers=[
@@ -38,7 +39,7 @@ setuptools.setup(
install_requires=[
'jinja2'
],
extras_require = {
extras_require={
'android_backup': ["pycryptodome"]
},
entry_points={
@@ -46,4 +47,4 @@ setuptools.setup(
"wtsexporter = Whatsapp_Chat_Exporter.__main__:main"
]
}
)
)