1
0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-11-24 05:12:02 +01:00

Improved pypi information

This commit is contained in:
unknown 2012-02-07 09:00:52 +01:00
parent 949825d16d
commit dc6eb2f9e4

@ -4,6 +4,18 @@ import shutil
import os.path import os.path
import re import re
CLASSIFIERS = filter(None, map(str.strip,
"""
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python :: 2.4
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
""".splitlines()))
try: try:
shutil.rmtree("./build") shutil.rmtree("./build")
except(OSError): except(OSError):
@ -28,12 +40,15 @@ def get_version():
return m.group(1) return m.group(1)
setup (name = 'ujson', setup (name = 'ujson',
version = get_version(), version = get_version(),
description = 'Ultra fast JSON encoder and decoder for Python', description = "Ultra fast JSON encoder and decoder for Python",
ext_modules = [module1], ext_modules = [module1],
author = "Jonas Tarnstrom", author="Jonas Tarnstrom",
author_email = "jonas.tarnstrom@esn.me", author_email="jonas.tarnstrom@esn.me",
maintainer = "Jonas Tarnstrom", download_url="http://github.com/esnme/ultrajson",
maintainer_email = "jonas.tarnstrom@esn.me", license="BSD License",
license = "BSD") packages=['ujson'],
platforms=['any'],
url="http://www.esn.me",
classifiers=CLASSIFIERS,
)