From 79e8ecf79908c463ffc02adc11a7f74569205e07 Mon Sep 17 00:00:00 2001 From: 2*yo Date: Thu, 14 Oct 2021 15:01:43 +0200 Subject: [PATCH] Add minimum supported python version is 3.7 --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 942ab5e..eb90e1b 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,13 @@ def read(fname): install_requires=['requests', 'python-dateutil', 'future', 'tldextract'], long_description=read('README.md'), long_description_content_type="text/markdown", - classifiers=[], + python_requires='>=3.7', + classifiers=[ + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + ], entry_points={ 'console_scripts': [ 'pt-info = passivetotal.cli.info:main',