rvc_inferpy / pyproject.toml
NeoPy's picture
Update pyproject.toml
9869b59 verified
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rvc_inferpy"
version = "0.11.2"
description = "Easy tools for RVC Inference"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "MIT" }
authors = [
{ name = "TheNeoDev", email = "[email protected]" }
]
dependencies = [
"av",
"einops",
"edge-tts",
"faiss-cpu>=1.7.3,<1.8",
"ffmpeg-python>=0.2.0",
"fairseq @ git+https://github.com/One-sixth/fairseq.git",
"gtts",
"local-attention",
"pydub>=0.25.1,<0.26",
"praat-parselmouth>=0.4.2,<0.5",
"pyworld>=0.3.4,<0.4",
"resampy>=0.4.2,<0.5",
"torchcrepe>=0.0.23,<0.1",
"torchfcpe>=0.0.4",
"yt_dlp"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Documentation = "https://rvc-inferpy.readthedocs.io"
Source = "https://huggingface.co/Thatneos/rvc_inferpy"
[project.optional-dependencies]
gpu = ["audio-separator[gpu]==0.30.1", "torch>=2.0.0"]
cpu = ["audio-separator[cpu]==0.30.1"]
dev = ["librosa>=0.9.1,<0.11"]
[tool.setuptools]
packages = { find = { where = "rvc_inferpy" } }
[tool.setuptools.packages.find]
include = ["rvc_inferpy", "rvc_inferpy.*"]
[tool.setuptools.options]
zip_safe = false