-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
81 lines (71 loc) · 1.82 KB
/
pyproject.toml
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
[project]
name = "tetos"
description = "Unified interface for multiple Text-to-Speech (TTS) providers"
authors = [
{name = "Frost Ming", email = "[email protected]"},
]
dependencies = [
"edge-tts>=6.1.10",
"openai>=1.20.0",
"mutagen>=1.47.0",
"azure-cognitiveservices-speech>=1.37.0",
"anyio>=4.3.0",
"click>=8.1.7",
"google-cloud-texttospeech>=2.16.3",
"ormsgpack>=1.5.0",
"httpx-ws>=0.6.2",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "Apache-2.0"}
dynamic = ["version"]
keywords = ["tts", "text-to-speech", "speech", "audio", "ai", "nlp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/frostming/tetos"
Documentation = "https://tetos.readthedocs.io/latest/"
[project.scripts]
tetos = "tetos.__main__:tts"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.1.1",
"pytest-asyncio>=0.23.6",
]
doc = [
"sphinx>=7.1.2",
"myst-parser>=2.0.0",
"shibuya>=2024.4.15",
]
[tool.ruff]
src = ["src"]
target-version = "py38"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"PGH", # pygrep-hooks
"W", # pycodestyle
"YTT", # flake8-2020
]
extend-ignore = ["B018", "B019"]
[tool.ruff.lint.isort]
known-first-party = ["tetos"]