File: setup.py

package info (click to toggle)
json-py 3.4-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 124 kB
  • ctags: 169
  • sloc: python: 837; makefile: 15
file content (25 lines) | stat: -rw-r--r-- 941 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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",
      )