Spaces:
Build error
Build error
Commit
·
066c23c
1
Parent(s):
a9505b1
Create pyproject.toml
Browse files- pyproject.toml +63 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "bark-ui-enhanced"
|
| 7 |
+
version = "0.4.5"
|
| 8 |
+
description = "Bark text to audio model with addition features and a Web UI"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.8"
|
| 11 |
+
authors = [
|
| 12 |
+
{name = "Suno Inc (original Bark)", email = "[email protected]"},
|
| 13 |
+
{name = "Count Floyd"},
|
| 14 |
+
]
|
| 15 |
+
# MIT License
|
| 16 |
+
license = {file = "LICENSE"}
|
| 17 |
+
|
| 18 |
+
dependencies = [
|
| 19 |
+
"boto3",
|
| 20 |
+
"encodec",
|
| 21 |
+
"funcy",
|
| 22 |
+
"mutagen",
|
| 23 |
+
"numpy",
|
| 24 |
+
"pytorch_seed",
|
| 25 |
+
"scipy",
|
| 26 |
+
"tokenizers",
|
| 27 |
+
"torch",
|
| 28 |
+
"tqdm",
|
| 29 |
+
"transformers",
|
| 30 |
+
"pyyaml"
|
| 31 |
+
]
|
| 32 |
+
|
| 33 |
+
[project.urls]
|
| 34 |
+
source = "https://github.com/C0untFloyd/bark-gui"
|
| 35 |
+
|
| 36 |
+
[project.optional-dependencies]
|
| 37 |
+
dev = [
|
| 38 |
+
"bandit",
|
| 39 |
+
"black",
|
| 40 |
+
"codecov",
|
| 41 |
+
"flake8",
|
| 42 |
+
"huggingface-hub>=0.14.1",
|
| 43 |
+
"hypothesis>=6.14,<7",
|
| 44 |
+
"isort>=5.0.0,<6",
|
| 45 |
+
"jupyter",
|
| 46 |
+
"mypy",
|
| 47 |
+
"nbconvert",
|
| 48 |
+
"nbformat",
|
| 49 |
+
"pydocstyle",
|
| 50 |
+
"pylint",
|
| 51 |
+
"pytest",
|
| 52 |
+
"pytest-cov",
|
| 53 |
+
]
|
| 54 |
+
|
| 55 |
+
[tool.setuptools]
|
| 56 |
+
packages = ["bark"]
|
| 57 |
+
|
| 58 |
+
[tool.setuptools.package-data]
|
| 59 |
+
bark = ["assets/prompts/*.npz", "assets/prompts/v2/*.npz"]
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
[tool.black]
|
| 63 |
+
line-length = 100
|