[Python-modules-commits] r387 - in /packages/json-py: ./ branches/ branches/upstream/ branches/upstream/current/ branches/upstream/current/setup.py tags/

kov at users.alioth.debian.org kov at users.alioth.debian.org
Thu May 4 11:09:36 UTC 2006


Author: kov
Date: Thu May  4 11:09:36 2006
New Revision: 387

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=387
Log:
[svn-inject] Installing original source of json-py

Added:
    packages/json-py/
    packages/json-py/branches/
    packages/json-py/branches/upstream/
    packages/json-py/branches/upstream/current/
    packages/json-py/branches/upstream/current/setup.py
    packages/json-py/tags/

Added: packages/json-py/branches/upstream/current/setup.py
URL: http://svn.debian.org/wsvn/python-modules/packages/json-py/branches/upstream/current/setup.py?rev=387&op=file
==============================================================================
--- packages/json-py/branches/upstream/current/setup.py (added)
+++ packages/json-py/branches/upstream/current/setup.py Thu May  4 11:09:36 2006
@@ -1,0 +1,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 at stardecisions.com",
+      url="http://sourceforge.net/projects/json-py/",
+      license="LGPL",
+      )




More information about the Python-modules-commits mailing list