forked from bootphon/phonemizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1011 Bytes
/
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
[tool.poetry]
name = "pozalabs-phonemizer"
version = "3.3.0"
description = "Simple text to phones converter for multiple languages"
authors = ["pozalabs <[email protected]>"]
license = "GPL3"
readme = "README.md"
packages = [{ include = "phonemizer" }]
keywords = ["linguistics", "G2P", "phone", "festival", "espeak", "TTS"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.11"
dlinfo = "^1.2.1"
attrs = ">=18.1"
typing-extensions = "^4.12.2"
joblib = "^1.4.2"
segments = "^2.2.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:.*segments.*",
"ignore::DeprecationWarning:.*csvw.*",
"ignore::DeprecationWarning:.*clldutils.*",
]