-
Notifications
You must be signed in to change notification settings - Fork 135
/
pyproject.toml
54 lines (52 loc) · 1.19 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "laion_clap"
version = "1.1.4"
authors = [
{ name="Yusong Wu" },
{ name="Tianyu Zhang" },
{ name="Yuchen Hui" }
]
maintainers = [
{ name="Yusong Wu" },
{ name="Tianyu Zhang" },
{ name="Yuchen Hui" }
]
description = "Contrastive Language-Audio Pretraining Model from LAION"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"numpy==1.23.5",
"soundfile",
"librosa",
"torchlibrosa",
"ftfy",
"braceexpand",
"webdataset",
"wget",
"wandb",
"llvmlite",
"scipy",
"scikit-learn",
"pandas",
"h5py",
"tqdm",
"regex",
"transformers",
"progressbar"
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
[project.urls]
"Homepage" = "https://github.com/LAION-AI/CLAP"
"Bug Tracker" = "https://github.com/LAION-AI/CLAP/issues"