From 002d6d9fc84f72325d71a46cc87df197f9421d71 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sat, 3 Dec 2011 02:59:50 +0100 Subject: Change of the home URL to my trac. --- json_diff.py | 2 +- setup.py | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/json_diff.py b/json_diff.py index b7b44fc..6607261 100755 --- a/json_diff.py +++ b/json_diff.py @@ -32,7 +32,7 @@ import logging from optparse import OptionParser __author__ = "Matěj Cepl" -__version__ = "1.2.3" +__version__ = "1.2.4" import locale diff --git a/setup.py b/setup.py index 9ac84e6..d4b13a3 100644 --- a/setup.py +++ b/setup.py @@ -3,21 +3,21 @@ from distutils.core import setup import json_diff setup( - name = 'json_diff', - version = '%s' % json_diff.__version__, - description = 'Generates diff between two JSON files', - author = 'Matěj Cepl', - author_email = 'mcepl@redhat.com', - url = 'https://gitorious.org/json_diff/mainline', - py_modules = ['json_diff', 'test_json_diff', 'test_strings'], - package_data = { + name='json_diff', + version='%s' % json_diff.__version__, + description='Generates diff between two JSON files', + author='Matěj Cepl', + author_email='mcepl@redhat.com', + url='https://luther.ceplovi.cz/trac/', + py_modules=['json_diff', 'test_json_diff', 'test_strings'], + package_data={ 'json_diff': 'test/*' }, - long_description = """Compares two JSON files (http://json.org) and + long_description="""Compares two JSON files (http://json.org) and generates a new JSON file with the result. Allows exclusion of some keys from the comparison, or in other way to include only some keys.""", - keywords = ['json', 'diff'], - classifiers = [ + keywords=['json', 'diff'], + classifiers=[ "Programming Language :: Python", "Development Status :: 4 - Beta", "Environment :: Console", -- cgit