-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 2.69 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 2.69 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "fish-audio-sdk"
version = "1.1.1"
description = "The official Python library for the Fish Audio API"
authors = [
{name = "abersheeran", email = "me@abersheeran.com"},
{name = "James Ding", email = "james@fish.audio"},
]
dependencies = [
"httpx>=0.27.2",
"ormsgpack>=1.5.0",
"pydantic>=2.9.1",
"httpx-ws>=0.6.2",
"typing-extensions>=4.15.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["fish-audio", "tts", "text-to-speech", "voice-cloning", "ai", "speech-synthesis"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://fish.audio"
Documentation = "https://docs.fish.audio"
Repository = "https://github.com/fishaudio/fish-audio-python"
Issues = "https://github.com/fishaudio/fish-audio-python/issues"
[project.optional-dependencies]
utils = [
"sounddevice>=0.4.6",
"soundfile>=0.12.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fishaudio", "src/fish_audio_sdk"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"fish-audio-sdk[utils]",
"pydoc-markdown>=4.8.2",
"pytest>=8.3.5",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-rerunfailures>=16.0.1",
"python-dotenv>=1.0.1",
"ruff>=0.14.3",
"ty>=0.0.2",
]
[[tool.pydoc-markdown.loaders]]
type = "python"
packages = ["fishaudio", "fish_audio_sdk"]
[tool.pydoc-markdown.renderer]
type = "mkdocs"
pages = [
{title = "Fish Audio SDK", name="index", source = "README.md"},
{title = "Client", name="fishaudio/client", contents = ["fishaudio.client.*"] },
{title = "Resources", name="fishaudio/resources", contents = ["fishaudio.resources.*"] },
{title = "Types", name="fishaudio/types", contents = ["fishaudio.types.*"] },
{title = "Core", name="fishaudio/core", contents = ["fishaudio.core.*"] },
{title = "Utils", name="fishaudio/utils", contents = ["fishaudio.utils.*"] },
{title = "Exceptions", name="fishaudio/exceptions", contents = ["fishaudio.exceptions.*"] },
]
[tool.uv.sources]
fish-audio-sdk = { workspace = true }