From eee7fe2ba22c9ec9a88a88466232a5e2bf3e65cc Mon Sep 17 00:00:00 2001 From: Chris Withers Date: Fri, 17 Nov 2023 06:46:16 +0000 Subject: [PATCH] Add python_requires so package installers know this requires 3.7 or newer Also remove some stale classifiers --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e7e19c0..04cc463 100644 --- a/setup.py +++ b/setup.py @@ -26,15 +26,13 @@ }, author='Alec Thomas', author_email='alec@swapoff.org', + python_requires=">=3.7", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',