From 7f3fc3be79d484ffb6b714a40b7a9657b299ab35 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Sat, 5 Dec 2015 12:24:40 +0100 Subject: [PATCH] Add Python 3 to PyPI classifiers. --- doc/changelog.txt | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/changelog.txt b/doc/changelog.txt index 430e79a..1d6bdd3 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -7,6 +7,8 @@ Closes: GH bug #30 * Fix support URL Closes: GH bug #28 +* Updated PyPI trove classifiers to include Python 3 + Closes: GH bug #25 1.8 (released 19.7.2015) diff --git a/setup.py b/setup.py index 5329ee2..a0f723d 100644 --- a/setup.py +++ b/setup.py @@ -455,7 +455,8 @@ installed. 'Topic :: System :: Archiving', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', 'Operating System :: OS Independent', ], distclass = MyDistribution,