-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.yapf]
based_on_style = "pep8"
indent_width = 4
column_limit = 100
[project]
name = "av_bench"
version = "1.0.0"
authors = [{ name = "Rex Cheng", email = "hkchengrex@gmail.com" }]
description = ""
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'torch >= 2.5.1',
'torchaudio',
'torchvision',
'cython',
'numpy >= 1.21',
'opencv-python >= 4.8',
'scipy >= 1.7',
'tqdm >= 4.66.1',
'librosa',
'torchlibrosa',
'resampy',
'colorlog',
'omegaconf',
'laion-clap @ git+https://github.com/hkchengrex/CLAP.git',
'passt @ git+https://github.com/hkchengrex/passt_hear21.git',
'imagebind @ git+https://github.com/hkchengrex/ImageBind.git',
'msclap @ git+https://github.com/hkchengrex/MS-CLAP.git',
'pandas',
]
[tool.hatch.build.targets.wheel]
packages = ["av_bench"]