From f75b8eee1aa754ae73cb07ed2280aaaad12395c6 Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Tue, 9 Jan 2018 21:47:49 -0500 Subject: [PATCH] setup.py: add classifier on supported Python version We're (hopefully) about to change the specifics about the Python versions we support. But, until then, let's be clear about the Python version (2.7) that we support. Signed-off-by: Cleber Rosa --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f673d57e..1ef32568 100755 --- a/setup.py +++ b/setup.py @@ -154,6 +154,7 @@ if __name__ == '__main__': "Operating System :: POSIX", "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Testing", + "Programming Language :: Python :: 2.7", ], packages=find_packages(exclude=('selftests*',)), data_files=get_data_files(), -- GitLab