From 2890ddd6a3dea24617f81e264758f42f91d9eddd Mon Sep 17 00:00:00 2001 From: belerico Date: Tue, 7 Apr 2020 18:26:17 +0200 Subject: [PATCH] Add classifier to setup.py [ci skip] --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 17857cc..b1547b2 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,14 @@ }, test_suite="tests", classifiers=[ - "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8" ], install_requires=["lark-parser", "docopt"], )