From 973572218f4a3c2487e4efc47a8e2809aef7bfda Mon Sep 17 00:00:00 2001
From: Ronan Hamon <ronan.hamon@lis-lab.fr>
Date: Wed, 18 Apr 2018 15:07:03 +0200
Subject: [PATCH] update license, author, and author_email fields in setup
 (issue #2)

---
 setup.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index c404542..521fc90 100644
--- a/setup.py
+++ b/setup.py
@@ -46,9 +46,10 @@ import sys
 
 NAME = 'madarrays'
 DESCRIPTION = 'Python package for audio data structures with missing entries'
+LICENSE = 'GNU General Public License v3 (GPLv3)'
 URL = 'https://gitlab.lis-lab.fr/skmad-suite/madarrays'
-AUTHOR = 'Ronan Hamon and Valentin Emiya'
-AUTHOR_EMAIL = 'ronan.hamon@lis-lab.fr, valentin.emiya@lis-lab.fr'
+AUTHOR = 'Ronan Hamon, Valentin Emiya, and Florent Jaillet'
+AUTHOR_EMAIL = 'ronan.hamon@lis-lab.fr, valentin.emiya@lis-lab.fr, florent.jaillet@lis-lab.fr'
 INSTALL_REQUIRES = ['matplotlib',
                     'numpy',
                     'scipy',
@@ -122,6 +123,7 @@ def setup_package():
           url=URL,
           author=AUTHOR,
           author_email=AUTHOR_EMAIL,
+          license=LICENSE,
           classifiers=CLASSIFIERS,
           keywords=KEYWORDS,
           packages=find_packages(exclude=['doc', 'dev']),
-- 
GitLab