-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
43 lines (37 loc) · 1.3 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
[tool.poetry]
name = "tts-wrapper"
version = "0.8.0"
description = "TTS-Wrapper makes it easier to use text-to-speech APIs by providing a unified and easy-to-use interface."
authors = ["Giulio Bottari <giuliobottari@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mediatechlab/tts-wrapper"
documentation = "https://github.com/mediatechlab/tts-wrapper"
keywords = [ "tts", "text-to-speech", "speech synthesis", "polly", "sapi" ]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mediatechlab/tts-wrapper/issues"
[tool.poetry.dependencies]
python = "^3.8"
requests = { version = "^2.28.0", optional = true }
boto3 = {version = "^1.24.34", optional = true}
ibm-watson = {version = "^6.0.0", optional = true}
google-cloud-texttospeech = {version = "^2.11.1", optional = true}
pyttsx3 = {version = "^2.90", optional = true}
[tool.poetry.extras]
google = ["google-cloud-texttospeech"]
watson = ["ibm-watson"]
polly = ["boto3"]
microsoft = ["requests"]
sapi = ["pyttsx3"]
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
pytest-mock = "^3.5.1"
black = {version = "^22.1.0", allow-prereleases = true}
types-requests = "^2.27.31"
mypy = "^0.971"
types-boto3 = "^1.0.2"
pytest-cov = "^3.0.0"
filetype = "^1.0.13"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"