improvisation-lab / pyproject.toml
atsushieee's picture
Upload folder using huggingface_hub
c1e08a0 verified
raw
history blame
842 Bytes
[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"