From 31c134c1079666e8e06c3cee172218b7e0f18821 Mon Sep 17 00:00:00 2001 From: SG Kassel Date: Wed, 3 Dec 2014 00:27:12 +1000 Subject: [PATCH] In setup.py: added classifiers indicating that this package now supports Python 3, and versions 3.2, 3.3, and 3.4 in particular. Bumped the version number for the 1.0.4 release. --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 19af05d..c68f6ce 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name = 'pyaixi', - version = '1.0.3', + version = '1.0.4', author = 'Geoff Kassel', author_email = 'geoffkassel_at_gmail_dot_com', packages = ['pyaixi', 'pyaixi.agents', 'pyaixi.environments', 'pyaixi.prediction', 'pyaixi.search'], @@ -36,6 +36,10 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Scientific/Engineering :: Artificial Intelligence',