From 714d06ecfac2eaabc5f04325130c9383e783d229 Mon Sep 17 00:00:00 2001 From: Matt Hickford Date: Tue, 6 Jan 2015 17:55:55 +0000 Subject: [PATCH] Clarify Python version support Tested Python 3.3 and 3.4 at https://travis-ci.org/hickford/clint/builds/46098963 --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e1dd436..3c12d51 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def publish(): ], install_requires=required, license='ISC', - classifiers=( + classifiers=[ # 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', @@ -50,6 +50,8 @@ def publish(): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.1', 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Topic :: Terminals :: Terminal Emulators/X Terminals', - ), + ], )