-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 756 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 756 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
[tool.poetry]
name = "uatiari"
version = "0.1.17"
description = "XP-based code review agent"
authors = ["Luís Fernando Guedes"]
readme = "README.md"
packages = [{include = "uatiari", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
langgraph = "^0.2.45"
langchain-google-genai = "^2.0.5"
python-dotenv = "^1.0.0"
rich = "^14.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.0.0"
ruff = "^0.1.0"
pyinstaller = "^6.3.0"
[tool.poetry.scripts]
uatiari = "uatiari.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.ruff]
line-length = 88
target-version = "py311"
select = ["E", "F", "I"]
ignore = ["E501"]