Fredrik Lundh is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

effbot / cjson-effbot

Various cjson tweaks, including byte string encoding support.

Clone this repository (size: 34.3 KB): HTTPS / SSH
hg clone https://bitbucket.org/effbot/cjson-effbot
hg clone ssh://hg@bitbucket.org/effbot/cjson-effbot

cjson-effbot / setup.py

Branch
default
#!/usr/bin/python

from distutils.core import setup, Extension

# __version__ = "1.0.5"
__version__ = "1.0.6b1-effbot"

macros = [('MODULE_VERSION', '%s' % __version__)]

setup(name         = "python-cjson",
      version      = __version__,
      author       = "Dan Pascu",
      author_email = "dan@ag-projects.com",
      url          = "http://ag-projects.com/",
      download_url = "http://cheeseshop.python.org/pypi/python-cjson/%s" % __version__,
      description  = "Fast JSON encoder/decoder for Python",
      long_description = open('README').read(),
      license      = "LGPL",
      platforms    = ["Platform Independent"],
      classifiers  = [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Topic :: Software Development :: Libraries :: Python Modules"
      ],
      ext_modules  = [
        Extension(name='cjson', sources=['cjson.c'], define_macros=macros)
      ]
)