-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "loopextractor"
version = "0.2.1"
dependencies = [
"tensorly>=0.8.1",
"librosa>=0.10.0",
"numpy>=1.22.0",
"scikit-learn<=1.3.2,>=1.1.0",
]
requires-python = ">= 3.8"
authors = [{name="Jordan B. L. Smith", email="jblsmith@gmail.com"}]
description = "Extract repeating loops from songs using Nonnegative Tucker Decomposition-based source separation"
readme = "README.md"
license = {file = "LICENSE.md"}
keywords = ["source separation", "loops", "audio", "music structure analysis"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio"
]
[project.urls]
Homepage = "https://github.com/jblsmith/loopextractor"