From 3ff009572798e3e5c4950731c7d9fb428775841e Mon Sep 17 00:00:00 2001 From: Vilhelm Prytz Date: Sat, 29 Aug 2020 19:17:02 +0200 Subject: [PATCH 1/3] setup.py: Add classifiers and python_requires * added list of classifiers with supported python versions (meta data) * use the python_requires tag to block older versions --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 3de31cc..239b9fa 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,16 @@ def dependencies(file): packages=find_packages(exclude=("tests", "examples")), version="0.0.30", license="MIT", + classifiers=[ + "Programming Language :: Python", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3 :: Only", + ], + python_requires=">=3.4", description="Beautiful terminal spinners in Python", long_description=long_description, long_description_content_type="text/markdown", From 662d1c20792ec52feff248b3bbe0b5102f9ef1b2 Mon Sep 17 00:00:00 2001 From: Vilhelm Prytz Date: Mon, 9 Nov 2020 10:38:09 +0100 Subject: [PATCH 2/3] setup.py: Remove Python 3.4 since it's not tested --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 239b9fa..311534c 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,6 @@ def dependencies(file): license="MIT", classifiers=[ "Programming Language :: Python", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", From c5f6ef233d5a3ef6c3db9f44aef03a789cb4a6ce Mon Sep 17 00:00:00 2001 From: Vilhelm Prytz Date: Mon, 9 Nov 2020 10:39:13 +0100 Subject: [PATCH 3/3] [v0.0.31] Make a release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 311534c..7579821 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def dependencies(file): setup( name="halo", packages=find_packages(exclude=("tests", "examples")), - version="0.0.30", + version="0.0.31", license="MIT", classifiers=[ "Programming Language :: Python",