import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="MusicOnPolytopes", version="0.1.0", author="Marmoret Axel", author_email="axel.marmoret@irisa.fr", description="Package for polytopic intepretation of music, with application to musical segmentation", long_description=long_description, long_description_content_type="text/markdown", url="https://gitlab.inria.fr/amarmore/musiconpolytopes", packages=setuptools.find_packages(), classifiers=[ "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Topic :: Multimedia :: Sound/Audio :: Analysis", "Programming Language :: Python :: 3.7" ], license='BSD', install_requires=[ 'mir_eval', 'numpy >= 1.18.0' ], python_requires='>=3.7', )