From d8ad8d7b57c0d4f1bd095b246b3e9f1263954b4c Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 11 May 2023 20:00:58 -0500 Subject: [PATCH] Lower setup.py version to 0.1.0, move non-dependency attributes to top --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 16258b9..c6e5e7f 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ with open(os.path.join(CURDIR, "README.md")) as file: setup( name="phototag", - version="1.0.0", + version="0.1.0", author="Xevion", author_email="xevion@xevion.dev", description="", @@ -33,6 +33,14 @@ setup( phototag=phototag.__main__:main """, zip_safe=False, + python_requires=">=3.7", + # license and classifier list: + # https://pypi.org/pypi?%3Aaction=list_classifiers + license="License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + classifiers=[ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", + ], install_requires=[ "cachetools==5.3.0; python_version ~= '3.7'", "certifi==2023.5.7; python_version >= '3.6'", @@ -112,13 +120,5 @@ setup( "vistir==0.6.1", "wheel==0.40.0; python_version >= '3.7'", ] - }, - python_requires=">=3.6", - # license and classifier list: - # https://pypi.org/pypi?%3Aaction=list_classifiers - license="License :: OSI Approved :: GNU General Public License v3 (GPLv3)", - classifiers=[ - "Programming Language :: Python :: 3", - "Operating System :: OS Independent", - ], + } )