summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2013-03-11 13:01:22 +0100
committerUltrabug <ultrabug@gentoo.org>2013-03-11 13:01:22 +0100
commitf1669ba9c3003e4c4671bfce1973c6f2bb22e589 (patch)
tree4e23a6966ead64beb0b6bacfc4aa1df29b30468a /setup.py
parent25996aacaf6954c39e78de9536a7dcfb378e684b (diff)
python3 compatibility inspired by waaaaargh (Johannes Firlefanz)0.3
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index bf6ffd4..a32eb3c 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ def read(fname):
setup(
name='py3status',
- version='0.2',
+ version='0.3',
url='https://github.com/ultrabug/py3status/wiki',
download_url='https://github.com/ultrabug/py3status',
license='BSD',
@@ -34,8 +34,11 @@ setup(
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
+ 'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Desktop Environment :: Window Managers :: i3wm',
],