forked from modantailleur/fadtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 820 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
[tool.poetry]
name = "fadtk"
version = "1.0.0"
description = "A simple and standardized library for Frechet Audio Distance calculation."
authors = ["Azalea <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/Microsoft/fadtk"
repository = "https://github.com/Microsoft/fadtk"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.23.5"
pandas = "^2.0.3"
scipy = "^1.11.2"
hypy-utils = "^1.0.19"
soundfile = "^0.12.1"
wheel = "^0.41.1"
numba = "^0.58.0"
librosa = "^0.10.1"
encodec = "^0.1.1"
transformers = "^4.30.0"
laion-clap = "^1.1.4"
nnaudio = "^0.3.2"
torch = "~2.1.0"
resampy = "^0.4.2"
msclap = "^1.3.3"
[tool.poetry.scripts]
fadtk = "fadtk.__main__:main"
fadtk-embeds = "fadtk.embeds.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"