-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
44 lines (40 loc) · 974 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
[tool.poetry]
name = "elpis"
version = "1.0.6"
description = "Elpis is a tool which allows language workers with minimal computational experience to build their own speech recognition models to automatically transcribe audio."
authors = ["CoEDL"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "3.10.*"
appdirs = "^1.4.4"
langid = "^1.1.6"
numpy = "^1.23.4"
pydub = "^0.25.1"
pympi-ling = "^1.70.2"
requests = "^2.28.1"
dict2xml = "^1.7.2"
llvmlite = "0.39.1"
librosa = "0.9.2"
numba = "0.56.3"
python-dotenv = "^0.21.0"
praatio = "^5.1.1"
nltk = "^3.7.0"
loguru = "^0.6.0"
psutil = "^5.9.2"
MarkupSafe = "2.1.1"
itsdangerous = "^2.1.2"
flask = "^2.2.2"
jinja2 = "^3.1.2"
werkzeug = "^2.2.2"
setuptools = "^65.5.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pylint = "^2.15.4"
wheel = "^0.37.1"
black = "^22.10.0"
[tool.black]
line-length = 100
target-version = ['py38']
[build-system]
requires = ["poetry>=1.2.2"]
build-backend = "poetry.masonry.api"