Clarify Python version support

Tested Python 3.3 and 3.4 at https://travis-ci.org/hickford/clint/builds/46098963
This commit is contained in:
Matt Hickford
2015-01-06 17:55:55 +00:00
parent e3f283ed6e
commit 714d06ecfa
+4 -2
View File
@@ -37,7 +37,7 @@ setup(
],
install_requires=required,
license='ISC',
classifiers=(
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
@@ -50,6 +50,8 @@ setup(
'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',
),
],
)