From c177c807e59acc9d83a85e34fcc810455b5f7dfe Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 5 Apr 2023 04:43:19 -0400 Subject: [PATCH] Add supported python versions --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.py b/setup.py index 3b465a1..fbdcfae 100644 --- a/setup.py +++ b/setup.py @@ -19,4 +19,12 @@ setup( "typing-extensions>=4.5.0", ], python_requires=">=3.7", + classifiers=[ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + ], )