From a60d899225872f3598662ab7cc551f38b720bd67 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 29 Mar 2021 14:25:57 +0000 Subject: [PATCH] Format code with black This commit fixes the style issues introduced in e145352 according to the output from black. Details: https://deepsource.io/gh/prashantsengar/ArrangePy/transform/ce6ca238-9a71-419a-b91b-6d894cdfd764/ --- setup.py | 42 +++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/setup.py b/setup.py index 11b9ca1..06ba408 100644 --- a/setup.py +++ b/setup.py @@ -1,25 +1,29 @@ from setuptools import setup import os + def readme(): - with open('README.md') as file: + with open("README.md") as file: return file.read() -setup(name='arrangepy', - version='1.1.2', - description='Arrange your files in distinct folder, help you clean your PC', - long_description=readme(), - long_description_content_type = 'text/markdown', - keywords='arrange files windows cleaning tool open source prashant sengar', - url='https://github.com/prashantsengar/ArrangePy', - author='Prashant Sengar', - license='MIT', - packages=['arrangepy'], - install_requires=[ - 'flask', - ], - entry_points={ - 'console_scripts': ['arrange=arrangepy.main:main'], - }, - include_package_data=True, - zip_safe=False) + +setup( + name="arrangepy", + version="1.1.2", + description="Arrange your files in distinct folder, help you clean your PC", + long_description=readme(), + long_description_content_type="text/markdown", + keywords="arrange files windows cleaning tool open source prashant sengar", + url="https://github.com/prashantsengar/ArrangePy", + author="Prashant Sengar", + license="MIT", + packages=["arrangepy"], + install_requires=[ + "flask", + ], + entry_points={ + "console_scripts": ["arrange=arrangepy.main:main"], + }, + include_package_data=True, + zip_safe=False, +)