-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
82 lines (78 loc) · 1.96 KB
/
pyproject.toml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "compiam"
dynamic = ["version"]
description = "Common tools for the computational analysis of Indian Art Music."
readme = "README.md"
license = {file = "COPYING"}
requires-python = ">=3.9"
keywords = ["carnatic", "hindustani", "models", "datasets", "tools"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"attrs>=23.1.0",
"matplotlib>=3.0.0",
"numpy>=1.20.3,<=1.26.4",
"joblib>=1.2.0",
"pathlib~=1.0.1",
"tqdm>=4.66.1",
"IPython>=7.34.0",
"ipywidgets>=7.0.0,<8",
"Jinja2~=3.1.2",
"configobj~=5.0.6",
"seaborn",
"librosa>=0.10.1",
"soundfile>=0.12.1",
"scikit-learn~=1.5.2",
"scikit-image~=0.24.0",
"opencv-python~=4.6.0",
"hmmlearn==0.3.3",
"fastdtw~=0.3.4",
"compmusic==0.4",
"mirdata==0.3.9",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[project.optional-dependencies]
tests = [
"decorator>=5.1.1",
"pytest>=7.2.0",
"future>=0.18.3",
"black>=23.3.0",
]
docs = [
"numpydoc",
"recommonmark",
"sphinx>=3.4.0",
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"sphinx-togglebutton",
]
tensorflow = [
"keras<3.0.0",
"tensorflow==2.15.0",
] # Fixing tf versions to avoid issues
torch = [
"torch==2.0.0",
"torchaudio==2.0.1",
]
essentia = [
"essentia",
]
[project.urls]
Homepage = "https://github.com/MTG/compIAM"
Documentation = "https://mtg.github.io/compIAM/"
Issues = "https://github.com/MTG/compIAM/issues/"
Releases = "https://github.com/MTG/compIAM/releases/"