-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 979 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
45
46
47
48
49
[tool.poetry]
name = "swr2-asr"
version = "0.1.0"
description = ""
authors = [
"Philipp Merkel <philippmerkel@outlook.com>",
"Valentin Schmidt <valentin.j.schmidt@web.de>",
"Marvin Borner <git@marvinborner.de>",
"Silja Kasper <>"
]
license = "MIT"
readme = "readme.md"
packages = [{include = "swr2_asr"}]
[tool.poetry.dependencies]
python = "~3.10"
tqdm = "^4.66.1"
numpy = "^1.25.2"
mido = "^1.3.0"
click = "^8.1.7"
matplotlib = "^3.7.2"
pyyaml = "^6.0.1"
pandas = "^2.1.0"
minio = "^7.2.0"
torch = "^2.0.1"
torchaudio = "^2.0.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pylint = "^2.17.5"
ruff = "^0.0.285"
ipykernel = "^6.25.2"
[tool.ruff]
select = ["E", "F", "B", "I"]
fixable = ["ALL"]
line-length = 100
target-version = "py310"
[tool.black]
line-length = 100
[tool.poetry.scripts]
train = "swr2_asr.train:main"
recognize = "swr2_asr.inference:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"