-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.1 KB
/
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
[tool.poetry]
name = "elpis"
version = "0.2.2"
description = """\
A library to perform automatic speech recognition with huggingface transformers.\
"""
readme = "README.md"
repository = "https://github.com/CoEDL/elpis_lib"
authors = ["Harry Keightley <harrykeightley@outlook.com>"]
keywords = ["Elpis", "huggingface", "ASR", "Automatic Speech Recognition", "CoEDL"]
[tool.poetry.dependencies]
python = "^3.10"
transformers = "^4.34.0"
datasets = "^2.6.1"
loguru = "^0.6.0"
pympi-ling = "^1.70.2"
librosa = "^0.9.2"
evaluate = "^0.4.0"
accelerate = "^0.22.0"
jiwer = "^3.0.3"
sounddevice = "^0.4.6"
torch = ">=2.0.0, !=2.0.1, !=2.1.0"
pedalboard = "^0.8.3"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-mock = "^3.10.0"
pyright = "^1.1.276"
black = "^22.10.0"
coverage = "^6.5.0"
pdoc3 = "^0.10.0"
[tool.pyright]
reportPrivateImportUsage = false
[tool.pytest.ini_options]
markers = [
"integration: mark a test as integration (deselect with '-m \"not integration\"')",
]
[pytest]
mock_traceback_monkeypatch = false
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"