-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (40 loc) · 1005 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xares"
version = "0.1.0"
description = "eXtensive Audio Representation and Evaluation Suite"
dependencies = [
"loguru",
"numpy<2",
"jiwer",
"scikit-learn==1.6.0",
"torch==2.2.1",
"torchaudio==2.2.1",
"torchmetrics==1.6.1",
"pandas==2.2.3",
"pytorch-ignite==0.5.1",
"pyyaml",
"soundfile==0.13.1",
"transformers==4.47.1",
"tqdm",
"webdataset==0.2.100",
]
authors = [
{name = "Junbo Zhang", email = "[email protected]"},
{name = "Heinrich Dinkel", email = "[email protected]"},
{name = "Yadong Niu", email = "[email protected]"},
{name = "Chenyu Liu", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/jimbozhang/xares.git"
[project.optional-dependencies]
examples = [
"dasheng",
]
[tool.setuptools.packages.find]
where = ["src"]