-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.08 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
[tool.poetry]
name = "GSSP"
version = "0.1.0"
description = "Code withholding the data-analysis part for the Ghent Semi-spontaneous Speeh (GSSP) paper"
authors = ["jonas <jonvdrdo.vanderdonckt@ugent.be>"]
license = "imec"
[tool.poetry.dependencies]
python = "^3.8,<3.10"
pandas = "^1.4.0"
numpy = "^1.22.2"
pyfunctional = "^1.4.3"
seaborn = "^0.11.2"
speechbrain = "^0.5.11"
pyarrow = "^7.0.0"
opensmile = "^2.4.1"
fastparquet = "^0.8.0" # opensmile outputs duration -> pyarrow does not serialize this
scikit-learn = "^1.0.2"
librosa = "^0.9.0"
tsflex = "^0.2.3"
plotly = "^5.9.0"
plotly-resampler = "0.8.2"
tensorflow = "^2.9.1"
transformers = "^4.21.0"
torch = "1.11.0"
torchaudio = "0.11.0"
kaleido = "0.2.1"
noisereduce = "^2.0.1"
praat-parselmouth = "^0.4.3"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
jedi-language-server = "^0.35.1"
isort = "^5.10.1"
memory-profiler = "^0.60.0"
ipython = "^8.0.1"
ipykernel = "^6.9.0"
ipywidgets = "^7.6.5"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.209"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"