From 5635fc7261fcef81192fbf6c65c83bdbf55da581 Mon Sep 17 00:00:00 2001 From: Rupus Reinefjord Date: Sat, 8 Aug 2020 18:50:14 +0200 Subject: [PATCH] Update setup.py with minimal python version --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c5c29ef..ac29f8a 100644 --- a/setup.py +++ b/setup.py @@ -21,5 +21,10 @@ setuptools.setup( "Environment :: Console", "Intended Audience :: End Users/Desktop", "Topic :: Utilities", - ] + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8" + ], + python_requires='>=3.6' )