From b076c9958e344c9b3c09133c7a78bf0445f98f51 Mon Sep 17 00:00:00 2001
From: Dominique Benielli <dominique.benielli@univ-amu.fr>
Date: Mon, 26 May 2025 15:31:58 +0200
Subject: [PATCH] build version

---
 MANIFEST.in | 2 +-
 setup.py    | 9 ++++++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index 69147fa..d0e720e 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -10,4 +10,4 @@ include *.rst
 include VERSION
 exclude tests_results.txt
 exclude requirements*
-exclude copyright*
+exclude copyright*
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 17dd602..6da77c6 100755
--- a/setup.py
+++ b/setup.py
@@ -315,6 +315,9 @@ def setup_package():
     set_version(ltfat_dir, get_version())
     # get the list of extensions
     extNames = findpyxfiles(ltfat_dir)
+    # authors=[{"name" : "Denis Arrivault" },
+    #              {"name" : "Florent Jaillet" },
+    #              {"name" : "Valentin Emiya" , "email" : "valentin.emiya@lis-lab.fr"}],
     # and build up the set of Extension objects
     if USE_CYTHON:
         fileExt = ".pyx"
@@ -324,7 +327,7 @@ def setup_package():
         print("witout Cython")
 
     extensions = [makeExtension(name, fileExt, lib_dir) for name in extNames]
-
+    # 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
     setup(name="ltfatpy",
           version=VERSION,
           description='The Large Time-Frequency Toolbox (LTFAT) in Python',
@@ -337,8 +340,9 @@ def setup_package():
                         'ltfatpy.tests.datasets': ['*.mat']},
           url="https://gitlab.lis-lab.fr/dev/ltfatpy",
           license='GNU GPL V3',
+          license_files='LICENSE.rst',
           author='Denis Arrivault and Florent Jaillet',
-          author_email='contact.dev@lis-lab.fr ',
+          author_email='valentin.emiya@lis-lab.fr',
           ext_modules=extensions,
           test_suite='nose.collector',
           tests_require=['nose', 'coverage'],
@@ -349,7 +353,6 @@ def setup_package():
                        'Intended Audience :: End Users/Desktop',
                        'Intended Audience :: Developers',
                        'Natural Language :: English',
-                       'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
                        'Operating System :: MacOS :: MacOS X',
                        'Operating System :: POSIX :: Linux',
                        'Programming Language :: C',
-- 
GitLab