forked from iason-solomos/Deb8flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1001 Bytes
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
[tool.poetry]
name = "deb8flow"
version = "0.1.0"
description = "Multi-agent AI debate framework with clean architecture"
authors = ["Alex Ishmanov"]
readme = "README.md"
license = "MIT"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = "^3.12"
python-docx = "^1.1.2"
langgraph = "^0.3.21"
langchain-openai = "^0.3.11"
langchain-core = "^0.3.49"
langchain-community = "^0.3.20"
openai = "^1.69.0"
pydantic = "^2.11.1"
python-dotenv = "^1.0.0"
rich = "^14.0.0"
typing-extensions = "^4.0.0"
dotenv = "^0.9.9"
docker = "^7.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
[tool.poetry.scripts]
product-committee = "product_committee:main"
conclusion-results = "conclusion_results:main"
rewrite = "scripts.rewrite:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"