-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (59 loc) · 1.97 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
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
[tool.poetry]
name = "paule"
version = "0.4.6"
description = "paule implements the Predictive Articulatory speech synthesis model Utilizing Lexical Embeddings (PAULE), which is a control model for the articulatory speech synthesizer VocalTractLab (VTL)."
license = "GPLv3+"
authors = ["Konstantin Sering <[email protected]>",
"Paul Schmidt-Barbo"
]
readme = "README.rst" # Markdown files are supported
repository = "https://github.com/quantling/paule"
homepage = "https://paule.readthedocs.io/en/latest/"
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',]
[tool.poetry.dependencies]
python = ">=3.9,<3.13" # Compatible python versions must be declared here
numpy = ">=1.23.1"
pandas = ">=1.4.3"
soundfile = ">=0.11.0"
tqdm = ">=4.64.1"
torch = ">=1.13.1"
llvmlite = ">=0.39.1"
librosa = ">=0.9.2"
numba = ">=0.56.4"
toml = ">=0.10.2"
matplotlib = ">=3.8.0"
[tool.poetry.dev-dependencies]
pytest = ">=7.0"
pytest-cov = ">=2.4"
pydocstyle = ">=6.1.1"
flake8 = ">=4.0.1"
sphinx = ">=1.4"
sphinx_rtd_theme = ">=1.0.0"
notebook = ">=6.4.10"
seaborn = ">=0.12.1"
numpydoc = ">=1.2"
sphinx-copybutton = ">=0.5.1"
pylint = ">=2.0.0"
nbsphinx = ">=0.8.8"
vulture = ">=2.3"
Jinja2 = ">=3.1.3"
[tool.pytest.ini_options]
addopts = '--doctest-glob "*.rst"'
[tool.pylint]
[tool.pylint.basic]
good-names = ["nn", "ii", "_", "jj", "df"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.message_control]
disable = "E1101"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"