From 6e74afbb16d9adf0cc08b389e718376ea9c050b7 Mon Sep 17 00:00:00 2001 From: szpecek <55459908+szpecek@users.noreply.github.com> Date: Mon, 29 Aug 2022 12:27:29 +0200 Subject: [PATCH] Update classifiers in setup.py Udpate classifiers required to some pre checks verification like migration projects from ptyhon2.7 to python3 --- setup.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8bf1ba9..d848d76 100644 --- a/setup.py +++ b/setup.py @@ -1,2 +1,14 @@ from setuptools import setup -setup() +setup( + python_requires=">=3.6", + classifiers=[ + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + ], +)