-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.12 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
[tool.poetry]
name = "sommelier-app"
version = "0.1.0"
description = ""
authors = ["Jingsong Gao <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
pandas = "^1.4.4"
datasets = "^2.4.0"
scipy = "1.8.1"
scikit-learn = "^1.1.2"
pytorch-lightning = "^1.7.5"
torch = "^1.12.1"
setuptools-rust = "1.0.0"
transformers = {extras = ["onnx"], version = "^4.21.3"}
matplotlib = "^3.5.3"
poethepoet = "^0.16.2"
torchmetrics = "^0.9.3"
tensorboard = "^2.10.0"
torch-tb-profiler = "^0.4.0"
onnxruntime = "^1.12.1"
spacy = "^3.4.1"
pandarallel = "^1.6.3"
xgboost = "^1.6.2"
seaborn = "^0.12.0"
Flask = "^2.2.2"
Flask-Cors = "^3.0.10"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^22.8.0"}
pre-commit = "^2.20.0"
ipykernel = "^6.15.2"
flake8 = "^5.0.4"
jupyter = "^1.0.0"
notebook = "^6.4.12"
[tool.poe.tasks]
install-ltt = "python3 -m pip install light-the-torch"
run-ltt = "python3 -m light_the_torch install --upgrade torch"
autoinstall-torch-cuda = ["install-ltt", "run-ltt"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"