-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (80 loc) · 1.72 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
83
84
85
[tool.poetry]
name = "sai"
version = "0.1.0"
description = "Synthetic A.I."
authors = ["Gianmarco <[email protected]>"]
license = "LICENSE"
readme = "README.md"
packages = [{ include = "sai", from = "src" }]
[build-system]
requires = ["poetry-core>=1.0.0", "cython"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 110
[tool.poetry.dependencies]
# Python versions
python = ">=3.10,<3.11"
# Utils
pyrootutils = "*"
loguru = "*"
plac = "^1.3.5"
ipykernel = "*"
jupyter = "*"
jupyter-contrib-nbextensions = "*"
ipywidgets = "*"
wget = "^3.2"
# ML
numpy = "*"
catboost = "^1.2"
category-encoders = "^2.6.2"
shap = "^0.42.1"
# Deep Learning
lightning = "^2.0.0"
lightning-bolts = "*"
lightning-transformers = "^0.2.5"
torch = [
{ version = "*", source = "pytorch", platform = "linux" },
{ version = "^2.0.0", platform = "darwin" },
]
torch-geometric = "^2.3.1"
pytorch-forecasting = { version = "^1.0.0", extras = ["mqf2"] }
opacus = "^1.4.0"
# ML tracking
tensorboard = "^2.14.0"
tensorboardx = "^2.6.2.2"
mlflow = "^2.6.0"
ydata-profiling = "^4.5.1"
dvc = "*"
dvclive = "*"
rich = "^13.5.2"
# Configs
hydra-core = "*"
# UI
gradio = "^3.45.2"
# Music
datasets = { extras = ["audio"], version = "^2.14.5" }
yt-dlp = "^2023.9.24"
sounddevice = "^0.4.6"
lion-pytorch = "^0.1.2"
[tool.poetry.dev-dependencies]
cython = "^3.0.2"
setuptools = "*"
setuptools_rust = "*"
black = { version = "*", extras = ["jupyter"] }
ipython = "*"
isort = "*"
mypy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest-pylint = "*"
pytest-mypy = "*"
pytest-testmon = "*"
pytest-xdist = "*"
virtualenv = "*"
nbmake = "*"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"