aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 8490aa5c6721e058f1b6d4f63c9697b394d4728f (plain) (blame)
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
[tool.poetry]
name = "swr2-asr"
version = "0.1.0"
description = ""
authors = ["Philipp Merkel <philippmerkel@outlook.com>"]
license = "MIT"
readme = "readme.md"
packages = [{include = "swr2_asr"}]

[tool.poetry.dependencies]
python = "~3.10"
torch = "2.0.0"
torchaudio = "2.0.1"
audioloader = {git = "https://github.com/marvinborner/AudioLoader.git"}
tqdm = "^4.66.1"
numpy = "^1.25.2"
mido = "^1.3.0"

[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
mypy = "^1.5.1"
pylint = "^2.17.5"

[tool.poetry.scripts]
train = "swr2_asr.train:run_cli"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"