-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 865 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
[tool.poetry]
name = "vocoder-dictation"
packages = [
{ include = "vocoder" },
]
version = "0.1.1"
description = "Dictation for programmers"
license = "MIT"
authors = ["ricky <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/ricky0123/vocoder"
documentation = "https://github.com/ricky0123/vocoder/blob/master/docs/user-guide.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "*"
torch = "*"
sounddevice = "*"
webrtcvad = "*"
tqdm = "*"
lark-parser = "*"
loguru = "*"
transformers = "*"
aioconsole = "^0.5.0"
graphviz = "^0.20.1"
[tool.poetry.dev-dependencies]
pytest = "*"
ipython = "*"
black = "*"
isort = "*"
autoflake = "*"
pytest-asyncio = "*"
pytest-mock = "*"
pytest-timeout = "^2.1.0"
invoke = "^1.7.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 88