From c3b1c1dd6abcd097a798ae86d6c20deeb7debdc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Tue, 5 Sep 2017 00:12:50 +0200 Subject: [PATCH] Add author and license information to setup.py --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 094eb54da..e9b7ee1e8 100644 --- a/setup.py +++ b/setup.py @@ -179,7 +179,13 @@ setup( name = "gajim", description = 'TODO', version=gajim.__version__, + author = "Philipp Hörist, Yann Leboulanger", + author_email = "gajim-devel@gajim.org", url = 'https://gajim.org', + license = 'GPL v3 or greater', + classifiers = [ + 'Programming Language :: Python :: 3', + ], cmdclass = { 'build_py': build, },