From 75e999c6620b49d5fd4129b8f399a52b480c3954 Mon Sep 17 00:00:00 2001 From: Axel Marmoret <axel.marmoret@inria.fr> Date: Wed, 24 Feb 2021 18:11:48 +0100 Subject: [PATCH] Adding the link to the gitlab in the setup.py --- setup.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 8cb7dcd..6174bfb 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( - name="polytopes", + name="MusicOnPolytopes", version="0.1.0", author="Marmoret Axel", author_email="axel.marmoret@irisa.fr", - description="Package for polytopes applied on musical segmentation", + description="Package for polytopic intepretation of music, with application to musical segmentation", long_description=long_description, long_description_content_type="text/markdown", - url="TODO", + url="https://gitlab.inria.fr/amarmore/musiconpolytopes", packages=setuptools.find_packages(), classifiers=[ "License :: OSI Approved :: BSD License", @@ -24,13 +24,8 @@ setuptools.setup( ], license='BSD', install_requires=[ - 'madmom', - 'matplotlib', 'mir_eval', - 'numpy >= 1.18.0', - 'pandas', - 'scipy >= 0.13.0', - 'soundfile', + 'numpy >= 1.18.0' ], python_requires='>=3.7', ) \ No newline at end of file -- GitLab