-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (47 loc) · 1.22 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
[tool.poetry]
name = "workshop"
version = "23.10.13"
description = "Baseimage used in the workshop 'from jupyter to production'"
authors = ["codecentric"]
package-mode = false
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11, <3.13"
jupyterlab = ">4"
pillow = ">=10"
pandas = ">=2"
scikit-learn = ">=1.3"
opencv-python = ">=4.8"
dvc = ">=3.22"
jupyterlab-lsp = "^5.0.0"
python-lsp-server = {extras = ["all"], version = "^1.8.2"}
jupyter-lsp = "^2.2.0"
jupytext = "^1.15.2"
pygit2 = "^1.13.1"
tqdm = "^4.66.1"
seaborn = "^0.13.0"
xgboost = "^2.0.3"
jupyterlab-code-formatter = "^2.2.1"
[tool.poetry.group.dagster.dependencies]
dagster-webserver = "^1.8.7"
dagster-postgres = "^0.24.7"
requests-toolbelt = "0.10.1"
urllib3 = "1.26.15"
dagster = "^1.8.0"
dagster-mlflow = "^0.24.7"
[tool.poetry.group.mlflow.dependencies]
mlflow = ">=2.7"
psycopg2-binary = "^2.9.10"
boto3 = "^1.35.57"
cryptography = "^43.0.3"
pymysql = "^1.1.1"
[tool.poetry.group.onnx.dependencies]
fastapi = {version = "^0.115.3", extras = ["standard"]}
onnxruntime = "^1.19.2"
skl2onnx = "^1.17.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
black = "^24.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"