-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (30 loc) · 956 Bytes
/
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
[tool.poetry]
name = "vcs-agent"
version = "0.1.0"
description = ""
authors = ["Tobias.Lindenbauer <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "~3.10"
client-ideformer = {git = "ssh://[email protected]/ml-4-se-lab/ideformer.git", subdirectory="cloud/client_ideformer"}
docker = "^7.1.0"
coverage = "^7.6.4"
pandas = "^2.2.3"
ytsaurus-client = "~0.13.20"
ytsaurus-yson = "~0.4.9"
matplotlib = "~3.9.3"
[tool.poetry.group.ytsaurus.dependencies]
ytsaurus-client = "~0.13.17"
ytsaurus-yson = "~0.4.9"
[[tool.poetry.source]]
name = "space-grazie-ml"
url = "https://packages.jetbrains.team/pypi/p/grazi/grazie-ml/simple"
priority = "supplemental"
[[tool.poetry.source]]
name = "space-ai-agents"
url = "https://packages.jetbrains.team/pypi/p/ml-4-se-lab/ai-agents/simple"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"