Skip to content

Commit

Permalink
Doc changes for for setup.py, and PKG-INFO is generated.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeranda committed May 21, 2014
1 parent 7f70e30 commit a69652e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 41 deletions.
29 changes: 0 additions & 29 deletions PKG-INFO

This file was deleted.

2 changes: 1 addition & 1 deletion README.txt
Expand Up @@ -13,7 +13,7 @@ re-indenting or removing unnecessary whitespace for minimal/canonical
JSON output.

demjson tries to be as closely conforming to the JSON specification,
published as IETF RFC 7158 <http://www.ietf.org/rfc/rfc7158.txt>, as
published as IETF RFC 7159 <http://tools.ietf.org/html/rfc7159>, as
possible. It can also be used in a non-strict mode where it is much
closer to the JavaScript/ECMAScript syntax (published as ECMA 262).
The demjson module has full Unicode support and can deal with very
Expand Down
21 changes: 10 additions & 11 deletions setup.py
Expand Up @@ -33,19 +33,18 @@
url='http://deron.meranda.us/python/%s/'%name,
download_url='http://deron.meranda.us/python/%(name)s/dist/%(name)s-%(version)s.tar.gz'\
% {'name':name, 'version':version},
description='encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 7158',
description='encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 7159',
long_description="""
The "demjson" module, and the included "jsonlint" script, provide methods
for encoding and decoding JSON formatted data, as well as checking JSON
data for errors and/or portability issues. The jsonlint command/script
can be used from the command line without needing any programming.
This module provides classes and functions for encoding or decoding data
represented in the language-neutral JSON format (which is often used as a
simpler substitute for XML in Ajax web applications). This implementation tries
to be as compliant to the JSON specification (RFC 7158) as possible, while
still providing many optional extensions to allow less restrictive JavaScript
syntax. It includes complete Unicode support, including UTF-32, BOM, and
surrogate pair processing. It can also support JavaScript's
NaN and Infinity numeric types as well as it's 'undefined' type.
It also includes a lint-like JSON syntax validator which tests JSON text
for strict compliance to the standard.
Although the standard Python library now includes basic JSON support
(which it did not when demjson was first written), this module
provides a much more comprehensive implementation with many features
not found elsewhere. It is especially useful for error checking or
for parsing JavaScript data which may not strictly be valid JSON data.
""".strip(),
license='GNU LGPL 3.0',
Expand Down

0 comments on commit a69652e

Please sign in to comment.