-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.4 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="barmuscomp",
version="0.1.6",
author="Marmoret Axel",
author_email="[email protected]",
description="Package for barwise compression applied on musical segmentation.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.imt-atlantique.fr/a23marmo/barmuscomp",
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.8"
],
license='BSD',
install_requires=[
'as_seg',
'base_audio',
'librosa >= 0.10',
'madmom @ git+https://github.com/CPJKU/madmom',
'matplotlib',
'mir_eval >= 0.6',
'mirdata >= 0.3.3',
'smart_open', # For mirdata, not installed by default, may be fixed in future release
'nn-fac >= 0.3.2',
'numpy >= 1.18.2',
'pandas',
'scipy >= 1.4.1',
'scikit-learn',
'tensorly >= 0.5.1',
'torch >= 1.8.0'
],
)