aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2015-01-13 11:33:23 +0100
committerMatěj Cepl <mcepl@cepl.eu>2015-01-13 11:37:47 +0100
commit4917a0dd34d7d53dae73a24808e0ff95bfd32ab2 (patch)
treee3fc350032cbf54cbb48d6e467347cc6c8a98566 /setup.py
parentdeba136e5016e45310ba2a0331a15c3ed47db5d1 (diff)
downloadyamlish-4917a0dd34d7d53dae73a24808e0ff95bfd32ab2.tar.gz
Fix testsuite under py3k
We don't support python 3.1, and 3.2 ... if anybody provides patches, I will accept them, but otherwise I cannot make myself to care.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1a970b2..23afc38 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ def read(fname):
setup(
name='yamlish',
- version="0.15.1",
+ version="0.16",
description='Python implementation of YAMLish',
author='Matěj Cepl',
author_email='mcepl@redhat.com',
@@ -25,6 +25,10 @@ setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: Implementation :: PyPy",
+ "Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",