from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup

version = '3.4'

setup(name="json-py",
      version=version,
      description="a JSON (http://json.org) reader and writer for Python",
      long_description="""\
json.py is an implementation of a JSON (http://json.org) reader and writer in
Python. jsontests.py are unit tests demonstrating the correctness of the
implementation.
""",
      classifiers=["Development Status :: 4 - Beta",
                   "Intended Audience :: Developers",
                   "License :: GNU Library or Lesser General Public License (LGPL)",
                   "Programming Language :: Python",
                   "Topic :: Software Development :: Libraries :: Python Modules",
                   ],
      author="Patrick D. Logan",
      author_email="patrickdlogan@stardecisions.com",
      url="http://sourceforge.net/projects/json-py/",
      license="LGPL",
      )
