-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.42 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
[project]
name = "texttospeechpython"
version = "0.2.0"
description = "PyQt desktop app for experimenting with Azure text-to-speech and SSML workflows."
readme = "README.md"
authors = [{ name = "Thaddeus Thomas" }]
requires-python = ">=3.11,<4.0"
dependencies = [
"azure-cognitiveservices-speech",
"beautifulsoup4",
"boto3",
"ebooklib",
"google-cloud-texttospeech",
"loguru",
"openpyxl",
"pandas",
"pillow",
"pyttsx3",
"pypdfium2",
"pypdf",
"pytesseract",
"pyqt6",
"python-docx",
"python-pptx",
"striprtf",
"xlrd",
"xlsxwriter",
]
[dependency-groups]
dev = [
"pyinstaller",
"pytest",
"pytest-qt",
]
[project.scripts]
tts-app = "app.main:main"
[tool.poetry]
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
azure-cognitiveservices-speech = "*"
beautifulsoup4 = "*"
boto3 = "*"
ebooklib = "*"
google-cloud-texttospeech = "*"
loguru = "*"
openpyxl = "*"
pandas = "*"
pillow = "*"
pyttsx3 = "*"
pypdfium2 = "*"
pypdf = "*"
pytesseract = "*"
pyqt6 = "*"
python-docx = "*"
python-pptx = "*"
striprtf = "*"
xlrd = "*"
xlsxwriter = "*"
[tool.poetry.group.dev.dependencies]
pyinstaller = "*"
pytest = "*"
pytest-qt = "*"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
qt_api = "pyqt6"
addopts = "-p no:cacheprovider"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"