diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,14 +1,15 @@ # -*- coding: utf-8 -*- from distutils.core import setup +import json_diff setup( name = 'json_diff', - version = '0.9.1', + 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', - download_url = "http://mcepl.fedorapeople.org/scripts/json_diff-0.9.1.tar.gz", + download_url = "http://mcepl.fedorapeople.org/scripts/json_diff-%s.tar.gz" % json_diff.__version__, py_modules = ['json_diff', 'test_json_diff', 'test_strings'], package_data = ['test/*'], long_description = """Compares two JSON files (http://json.org) and @@ -17,7 +18,6 @@ keys from the comparison, or in other way to include only some keys.""", keywords = ['json', 'diff'], classifiers = [ "Programming Language :: Python", - "Programming Language :: Python :: 3", "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Information Technology", |