Files
Retrieval-based-Voice-Conve…/pyproject.toml
2024-01-22 13:29:40 +09:00

44 lines
1.0 KiB
TOML

[tool.poetry]
name = "rvc"
version = "0.3.2"
description = "An easy-to-use Voice Conversion framework based on VITS."
authors = ["Ftps <ftpsflandre@gmail.com>"]
readme = "README.md"
[tool.poetry.urls]
github = "https://github.com/RVC-Project/Retrieval-based-Voice-Conversion"
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.1.0"
fairseq = "^0.12.2"
# fairseq = {git = "https://github.com/Tps-F/fairseq.git", branch="main"}
soundfile = "^0.12.1"
librosa = "^0.10.1"
praat-parselmouth = "^0.4.3"
pyworld = "^0.3.4"
torchcrepe = "^0.0.22"
av = "^11.0.0"
faiss-cpu = "^1.7.4"
python-dotenv = "^1.0.0"
pydub = "^0.25.1"
click = "^8.1.7"
tensorboardx = "^2.6.2.2"
poethepoet = "^0.24.4"
uvicorn = {version = "^0.26.0", optional=true}
fastapi = "^0.109.0"
python-multipart = {version = "^0.0.6", optional=true}
[tool.poetry.extras]
api = ["uvicorn", "fastapi"]
[tool.poetry.scripts]
rvc = "rvc.utils.cli.cli:main"
[tool.poe.tasks]
rvc-api = "uvicorn rvc.utils.api.api:app --reload"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"