Fix installation problem when LANG=C
diff --git a/setup.py b/setup.py index 10204be..b9a7cf4 100755 --- a/setup.py +++ b/setup.py
@@ -35,4 +35,16 @@ zip_safe = False, requires = ["six"], install_requires = ["six"], # XXX fix when packaging is sane again + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Topic :: Software Development :: Libraries', + ] )