-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
41 lines (37 loc) · 922 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
39
40
41
[tool.poetry]
name = "fave"
version = "2.0.3-dev"
description = "Forced alignment and vowel extraction"
authors = [
"Ingrid Rosenfelder",
"Josef Fruehwald <[email protected]>",
"Christian Brickhouse <[email protected]>",
"Keelan Evanini",
"Scott Seyfarth",
"Kyle Gorman",
"Hilary Prichard",
"Jiahong Yuan",
"FAVE contributors"
]
license = "GPL-3.0-only"
readme = "README.rst"
homepage = "https://github.com/JoFrhwld/FAVE"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
numpy = "^1.22"
tqdm = "^4.64.0"
[tool.poetry.dev-dependencies]
sphinx = "^7"
sphinx_pyproject = "0.1"
jinja2 = "~3.0"
pylint = "^2.5.2"
flake8 = "^5"
pytest = "^7"
[build-system]
requires = ["poetry>=1.1"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
fave-extract = "fave.extractFormants:main"
fave-align = "fave.FAAValign:setup"
extractFormants = "fave.extractFormants:main"
FAAValign = "fave.FAAValign:setup"