-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (100 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
108 lines (100 loc) · 2.27 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "speech_engine"
version = "0.2.0"
description = "Python package for synthesizing text into speech"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "Praanesh", email = "praaneshselvaraj2003@gmail.com"}
]
keywords = [
"speech_engine",
"text2speech",
"text-to-speech",
"TTS",
"speech synthesis",
"audio generation",
"natural language processing",
"language processing",
"voice synthesis",
"speech output",
"speech generation",
"language synthesis",
"voice output",
"audio synthesis",
"voice generation",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
]
dependencies = [
"gtts>=2.5.4",
"playsound3>=1.0.0",
"openai>=2.1.0",
"pyaudio>=0.2.14",
"pydub>=0.25.1",
"static-ffmpeg>=2.5"
]
[project.urls]
Homepage = "https://github.com/PraaneshSelvaraj/speech_engine"
Repository = "https://github.com/PraaneshSelvaraj/speech_engine"
[project.optional-dependencies]
dev = [
"black>=23.0",
"isort>=5.12.0",
"mypy>=1.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
line-length = 88
target-version = ["py38"]
exclude = '''
/(
\.direnv
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
known_first_party = ["speech_engine"]
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
strict_optional = true
check_untyped_defs = true
disable_error_code = ["import-untyped"]
exclude = "(build|dist|.venv)"
[[tool.mypy.overrides]]
module = ["pydub"]
ignore_missing_imports = true