generated from Anatole-DC/template_python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
82 lines (59 loc) · 1.66 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
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "koregraph"
version = "0.0.0"
description = "An AI for music driven choregraphy generation."
authors = [
"Anatole-DC <[email protected]>",
"Kelly-an <[email protected]>",
"Robin Le Floch <[email protected]>",
"maudbenichou <[email protected]>"
]
readme = "README.md"
homepage = "https://anatole-dc.github.io/koregraph/#/"
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.0"
urllib3 = "^2.2.1"
requests = "^2.32.2"
librosa = "^0.10.2.post1"
matplotlib = "^3.9.0"
pydub = "^0.25.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
flake8 = "^6.1.0"
black = "^24.4.2"
[tool.poetry.group.notebook]
optional = true
[tool.poetry.group.notebook.dependencies]
jupyterlab = "^4.2.1"
black = {extras = ["jupyter"], version = "^24.4.2"}
[tool.poetry.group.viewer]
optional = true
[tool.poetry.group.viewer.dependencies]
mutagen = "^1.47.0"
pillow = "^10.3.0"
moviepy = "^1.0.3"
[tool.poetry.group.chunk]
optional = true
[tool.poetry.group.chunk.dependencies]
soundfile = "^0.12.1"
[tool.poetry.group.training]
optional = true
[tool.poetry.group.training.dependencies]
mlflow = "^2.13.1"
tensorflow = "^2.16.1"
[tool.poetry.group.cloud.dependencies]
google-cloud-storage = "^2.16.0"
[tool.poetry.scripts]
preprocess = "koregraph.cli.preprocess:main"
viewer = "koregraph.cli.viewer:main"
chunk = "koregraph.cli.chunk_command:main"
train = "koregraph.cli.model:main"
predict = "koregraph.cli.predict:main"
evaluate = "koregraph.cli.evaluate:main"
data = "koregraph.cli.dataset:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"