-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (69 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
87 lines (69 loc) · 1.95 KB
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
86
87
[tool.poetry]
name = "dialog2graph"
version = "0.1.1"
description = "Dialog2Graph is a project for creating dialog graphs based on input dialogs."
authors = ["Denis Kuznetsov <kuznetsov.den.p@gmail.com>, Chirkin Andrey <andruhabobr@gmail.com>, Anastasia Voznyuk <>, Anna Mikhailova <>, Maria Molchanova <>, Yuri Peshkichev <>"]
readme = "README.md"
package-mode = true
[tool.poetry.dependencies]
python = "^3.10,<3.13"
tqdm = "^4.66.5"
poethepoet = "^0.29.0"
pandas = "^2.2.3"
colorama = "^0.4.6"
networkx = "^3.3"
langchain = "^0.3.1"
langchain-openai = "^0.2.1"
matplotlib = "^3.9.2"
langchain-community = "^0.3.1"
pydantic = "*"
sentence-transformers = "^3.4.1"
click = "^8.1.8"
pyyaml = "^6.0.2"
langchain-chroma = "^0.2.2"
langchain-huggingface = "^0.1.2"
accelerate = "^1.6.0"
unstructured = {extras = ["md"], version = "^0.17.2"}
datasets = "^3.5.0"
psycopg2-binary = "^2.9.10"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
nbsphinx = "*"
sphinx-favicon = "*"
sphinx-gallery = "*"
sphinx-copybutton = "^0.5.2"
sphinxcontrib-katex = "*"
pydata-sphinx-theme = "^0.16.1"
sphinxcontrib-httpdomain = "*"
sphinx-autodoc-typehints = "*"
jupytext = "*"
jupyter = "*"
sphinx-autoapi = "*"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
deptry = "^0.23.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
ruff = "*"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "*"
pytest-cov = "*"
coverage = { version = "!=7.3.3,!=7.6.6", extras = ["toml"] }
[tool.poe]
default_task_type = "script"
[tool.poe.tasks]
test = "scripts.test:quick_test"
coverage = "scripts.test:coverage"
lint = "scripts.codestyle:_check"
format = "scripts.codestyle:_format"
check_metrics = "scripts.check_metrics:test_d2g_pipelines"
[tool.poetry.scripts]
dialog2graph = "dialog2graph.cli.main:cli"