-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1002 Bytes
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1002 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "asr-toolkit"
version = "1.0.3"
description = "Toolkit for speech recognition"
authors = ["Dan Ringwald <dan.ringwald12@gmail.com>"]
license = "Reserved"
readme = "README.md"
packages = [
{include = "asr_toolkit"}
]
exclude = [ "deployments", "infrastructure" ]
[tool.poetry.dependencies]
python = "^3.9"
cryptography = "^37.0.4"
requests = "^2.28.1"
filelock = "^3.7.1"
Flask = "^2.2.1"
Flask-Cors = "^3.0.10"
biopython = "^1.79"
more-itertools = "^8.12.0"
pandas = "^1.4.1"
pydub = "^0.25.1"
smart-open = "^5.2.1"
webrtcvad = "^2.0.10"
PyYAML = "^6.0"
PyAudio = "^0.2.12"
cloudwatch = "^1.0.5"
gunicorn = "*"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
boto3 = "^1.21.30"
flake8 = "^4.0.1"
isort = "^5.10.1"
jupyter = "^1.0.0"
loguru = "^0.6.0"
pytest = "^7.1.1"
sagemaker = "^2.82.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target_version = ['py39']
include = '\.pyi?$'
exclude = ''