forked from phgz/emotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.15 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
[tool.poetry]
name = "a62-emotion"
version = "0.11.4"
description = "A model for emotion classification based on text and audio."
authors = ["Philip Gaudreau <[email protected]>", "Guy Raymond <[email protected]>", "Gabriel Trottier <[email protected]>"]
readme = "README.md"
repository = "https://github.com/philipgaudreau/emotion"
packages = [
{ include = "emotion"}
]
[tool.poetry.dependencies]
python = "3.8.13"
keras = "^2.8.0"
numpy = "1.20.3"
scikit-learn = "0.24.2"
pandas = "1.2.4"
librosa = "^0.9.1"
dvc = {version = "<2.11", extras = ["gdrive"]}
tensorflow-hub = "^0.12.0"
Flask = "^2.1.2"
gunicorn = "^20.1.0"
nltk = "^3.7"
transformers = "^4.20.1"
tensorflow-cpu = "^2.9.1"
[tool.poetry.dev-dependencies]
seaborn = "^0.11.2"
pytest = "^7.1.1"
jupyter = "^1.0.0"
pyAudioAnalysis = "^0.3.14"
ffmpy = "^0.3.0"
matplotlib = "3.4.2"
fanalysis = "^0.0.1"
TPOT = "^0.11.7"
torch = "^1.11.0"
tensorflow = "^2.9.1"
tensorflow-text = "^2.9.0"
wordcloud = "^1.8.1"
keras = "^2.9.0"
speechpy = "^2.4"
[tool.poetry.plugins."console_scripts"]
"emotion" = "emotion.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"