From d0f56212d1704dfcc0eaacafebe2cbe92a720c65 Mon Sep 17 00:00:00 2001 From: Dmitry Romanenko Date: Tue, 12 Jan 2021 20:49:10 -0500 Subject: [PATCH] Add python minor version classifiers --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e3bdf18..27bbb31 100644 --- a/setup.py +++ b/setup.py @@ -32,8 +32,12 @@ setuptools.setup( "Environment :: Console", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Operating System :: OS Independent", ], python_requires=">=3.6", entry_points={"console_scripts": ["wg-meshconf = wg_meshconf:main"]}, -) \ No newline at end of file +)