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, +)