-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (62 loc) · 1.76 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
[tool.poetry]
name = "zeroNoteSamba"
version = "0.0.1"
description = "Self-Supervised Beat Tracking."
authors = ["Dorian Desblancs <ddesblancs@deezer.com>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/deezer/zeroNoteSamba"
homepage = "https://github.com/deezer/zeroNoteSamba"
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Artistic Software",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
]
packages = [ { include = "zeroNoteSamba" } ]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
librosa = "0.8.*"
numpy = "<1.24.0"
torch = "1.*"
matplotlib = "^3.7.2"
cython = "^0.29.36"
pyyaml = "^6.0"
jams = "^0.3.4"
spleeter = "2.3.*"
tqdm = "^4.65.0"
ipython = "^8.14.0"
[tool.poetry.dev-dependencies]
mypy = "*"
black = "*"
isort = "*"
flake8 = "*"
pandas-stubs = "*"
antropy = "^0.1.5"
types-openpyxl = "^3.1.0.13"
types-pyyaml = "^6.0.12.10"
types-tqdm = "^4.65.0.1"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
strict = true
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"