Browse Source

setup.py: replace broad python3 classifier with versions the pipeline tests against

Fabian Peter Hammerle 3 years ago
parent
commit
b447207e43
1 changed files with 6 additions and 1 deletions
  1. 6 1
      setup.py

+ 6 - 1
setup.py

@@ -17,6 +17,11 @@ setuptools.setup(
     classifiers=[
         "License :: OSI Approved :: MIT License",
         "Operating System :: POSIX :: Linux",
-        "Programming Language :: Python :: 3",
+        # .github/workflows/python.yml
+        "Programming Language :: Python :: 3.5",
+        "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
+        "Programming Language :: Python :: 3.8",
+        "Topic :: Utilities",
     ],
 )