forked from fishaudio/audio-preprocess
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 749 Bytes
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
[project]
authors = [
{name = "Lengyue", email = "lengyue@lengyue.me"},
]
dependencies = [
"tqdm>=4.64.1",
"demucs>=4.0.0",
"loguru>=0.6.0",
"pyloudnorm>=0.1.1",
"matplotlib>=3.6.2",
"librosa>=0.9.0",
"richuru>=0.1.1",
"praat-parselmouth>=0.4.3",
"click>=8.0.0",
"faster-whisper",
"funasr",
"modelscope",
]
description = "Preprocess audio data"
license = {text = "Apache"}
name = "fish-audio-preprocess"
readme = "README.md"
requires-python = ">=3.9"
version = "0.2.8"
[project.scripts]
fap = "fish_audio_preprocess.cli.__main__:cli"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]
[tool.setuptools]
packages = ["fish_audio_preprocess"]
[tool.isort]
profile = "black"