mirror of
https://github.com/serp-ai/bark-with-voice-clone.git
synced 2026-04-07 19:57:11 +02:00
first commit
This commit is contained in:
58
pyproject.toml
Normal file
58
pyproject.toml
Normal file
@@ -0,0 +1,58 @@
|
||||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "suno-bark"
|
||||
version = "0.0.1a"
|
||||
description = "Bark text to audio model"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
authors = [
|
||||
{name = "Suno Inc", email = "hello@suno.ai"},
|
||||
]
|
||||
# Apache 2.0
|
||||
license = {file = "LICENSE"}
|
||||
|
||||
dependencies = [
|
||||
"boto3",
|
||||
"encodec",
|
||||
"funcy",
|
||||
"numpy",
|
||||
"scipy",
|
||||
"tokenizers",
|
||||
"torch",
|
||||
"tqdm",
|
||||
"transformers",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
source = "https://github.com/suno-ai/bark"
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"bandit",
|
||||
"black",
|
||||
"codecov",
|
||||
"flake8",
|
||||
"huggingface-hub",
|
||||
"hypothesis>=6.14,<7",
|
||||
"isort>=5.0.0,<6",
|
||||
"jupyter",
|
||||
"mypy",
|
||||
"nbconvert",
|
||||
"nbformat",
|
||||
"pydocstyle",
|
||||
"pylint",
|
||||
"pytest",
|
||||
"pytest-cov",
|
||||
]
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["bark"]
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
bark = ["assets/prompts/*.npz"]
|
||||
|
||||
[tool.black]
|
||||
line-length = 100
|
||||
Reference in New Issue
Block a user