File size: 716 Bytes
c6919c4 |
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 |
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bark-infinity"
version = "0.0.3"
description = "Bark text to audio model"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Suno Inc", email = "[email protected]"},
{name = "Jonathan Fly"},
]
# Apache 2.0
license = {file = "LICENSE"}
[project.urls]
source = "https://github.com/JonathanFly/bark"
[tool.setuptools]
install_requires = [
{file = "requirements-pip.txt"},
]
[project.optional-dependencies]
dev = [
{file = "requirements-dev-pip.txt"},
]
[tool.setuptools.package-data]
bark-infinity = ["assets/prompts/*.npz", "assets/prompts/v2/*.npz"]
[tool.black]
line-length = 100
|