File size: 842 Bytes
c1e08a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "improvisation-lab"
version = "0.2.0"
description = ""
authors = ["atsushieee <[email protected]>"]
readme = "README.md"
packages = [
    {include = "improvisation_lab"},
    {include = "scripts"}
]

[tool.poetry.dependencies]
python = "^3.11"
torch = "2.2.2"
torchfcpe = "^0.0.4"
numpy = "1.26.4"
pyaudio = "^0.2.14"
pyyaml = "^6.0.2"
types-pyyaml = "^6.0.12.20240917"
scipy = "^1.14.1"
gradio = "5.7.1"


[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
black = "^24.10.0"
isort = "^5.13.2"
pydocstyle = "^6.3.0"
pytest = "^8.3.3"
pyproject-flake8 = "^7.0.0"
pytest-mock = "^3.14.0"

[tool.flake8]
max-line-length = 88
extend-ignore = "E203"

[tool.black]
line-length = 88

[tool.mypy]
ignore_missing_imports = "True"

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