From e71ef264c0a18f4b140fcf833914fc2883d42bf1 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Fri, 20 Jul 2018 16:47:00 +0200 Subject: Fix author_email. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 2502654..d4ec674 100644 --- a/setup.py +++ b/setup.py @@ -16,12 +16,13 @@ def get_long_description(): + "\nChangelog:\n" + "=" * 10 + "\n" \ + read("NEWS.txt") + 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', + author_email='mcepl@cepl.eu', url='https://gitlab.com/mcepl/json_diff', py_modules=['json_diff'], long_description=get_long_description(), -- cgit