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:
parent
949825d16d
commit
dc6eb2f9e4
@ -4,6 +4,18 @@ import shutil
|
||||
import os.path
|
||||
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:
|
||||
shutil.rmtree("./build")
|
||||
except(OSError):
|
||||
@ -29,11 +41,14 @@ def get_version():
|
||||
|
||||
setup (name = 'ujson',
|
||||
version = get_version(),
|
||||
description = 'Ultra fast JSON encoder and decoder for Python',
|
||||
description = "Ultra fast JSON encoder and decoder for Python",
|
||||
ext_modules = [module1],
|
||||
author="Jonas Tarnstrom",
|
||||
author_email="jonas.tarnstrom@esn.me",
|
||||
maintainer = "Jonas Tarnstrom",
|
||||
maintainer_email = "jonas.tarnstrom@esn.me",
|
||||
license = "BSD")
|
||||
|
||||
download_url="http://github.com/esnme/ultrajson",
|
||||
license="BSD License",
|
||||
packages=['ujson'],
|
||||
platforms=['any'],
|
||||
url="http://www.esn.me",
|
||||
classifiers=CLASSIFIERS,
|
||||
)
|
Loading…
Reference in New Issue
Block a user