Spaces:
Runtime error
Runtime error
File size: 925 Bytes
b4d60ce |
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 |
[project]
name = "zerorvc"
version = "0.0.10"
authors = [{ name = "Jacob Lin", email = "jacob@csie.cool" }]
description = "Run Retrieval-based Voice Conversion training and inference with ease."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.0.0",
"torch>=2.0.0",
"datasets",
"accelerate",
"huggingface_hub",
"tqdm",
"fairseq",
"librosa",
"scipy",
]
[project.urls]
Homepage = "https://github.com/jacoblincool/zero-rvc"
Issues = "https://github.com/jacoblincool/zero-rvc/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["zerorvc/**/*", "pyproject.toml", "README.md", "LICENSE"]
[tool.hatch.build.targets.wheel]
packages = ["zerorvc"]
|