-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 905 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 905 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
[project]
name = "code_review_agent"
version = "0.1.0"
description = ""
authors = [
{name = "Mykhailo",email = "mykhailo.ulanovych@exilion.com"}
]
readme = "README.md"
packages = [
{ include = "code_review_agent", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.11"
typer = {extras = ["all"], version = "^0.12.3"}
openai = "^1.23.6"
instructor = "^1.2.2"
gitpython = "^3.1.43"
pyyaml = "^6.0.1"
pydantic = "^2.7.1"
python-dotenv = "^1.0.1"
tiktoken = "^0.9.0"
atlassian-python-api = "^4.0.4"
pygithub = "^2.6.1"
unidiff = "^0.7.5"
tree-sitter = ">=0.21,<0.22"
tree-sitter-languages = ">=1.10,<1.11"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
pytest-mock = "^3.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
code-review-agent = "code_review_agent.cli:app"
[tool.pytest.ini_options]
pythonpath = [
"src"
]