From b59b8ed997d6d69055c95e8d1804bf88848dbca3 Mon Sep 17 00:00:00 2001 From: sp1thas Date: Wed, 25 Nov 2020 21:11:02 +0200 Subject: [PATCH] reformat setup.py --- setup.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/setup.py b/setup.py index 1eeb2b4..3f10a96 100644 --- a/setup.py +++ b/setup.py @@ -8,32 +8,30 @@ raise ValueError("Module version not found.") version = version[0] -with open('README.md') as f: +with open("README.md") as f: long_description = f.read() setup( name="pyclimenu", - packages=['pyclimenu'], + packages=["pyclimenu"], version=version, description="The easy way to create command line menus", author="Panagiotis Simakis", author_email="simakis@autistici.org", url="https://github.com/sp1thas/pyclimenu", - download_url="https://github.com/sp1thas/pyclimenu/archive/master.zip", keywords=["menu"], include_package_data=True, - zip_safe=False, long_description=long_description, - long_description_content_type='text/markdown', + long_description_content_type="text/markdown", classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', - 'Topic :: Software Development :: Libraries :: Python Modules', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries :: Python Modules", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], python_requires=">=3.6", )