-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (72 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
91 lines (72 loc) · 2.03 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
88
89
90
91
[tool.poetry]
name = "codedog"
version = "0.11.0"
license = "MIT"
readme = "README.md"
authors = ["Arcadia <arcadia822@gmail.com>", "Linpp "]
description = "Codedog reviews your pull request using llm."
repository = "https://www.github.com/codedog-ai/codedog"
homepage = "https://www.codedog.ai"
keywords = ["code review", "langchain", "llm"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/codedog-ai/codedog/issues"
"Discord" = "https://discord.gg/8TfqpFC4"
[tool.poetry.dependencies]
python = "^3.10"
langchain = "^0.3.21"
openai = "^1.37.1"
python-gitlab = ">=3.14,<5.0"
pygithub = ">=1.58.2,<3.0.0"
unidiff = "^0.7.5"
annotated-types = "^0.7.0"
pydantic = "^2.8.2"
pydantic-core = "^2.20.1"
h11 = "^0.14.0"
distro = "^1.9.0"
langchain-community = "^0.3.20"
langchain-openai = "^0.3.11"
requests = "^2.31.0"
aiohttp = "^3.9.3"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = ">=23.3,<25.0"
flake8 = ">=6,<8"
isort = "^5.12.0"
python-semantic-release = "^8.0.5"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest-asyncio = ">=0.20.3,<0.22.0"
pytest-cov = ">=4,<6"
[tool.poetry.group.http]
optional = true
[tool.poetry.group.http.dependencies]
fastapi = ">=0.100.1,<0.112.0"
uvicorn = ">=0.23.1,<0.30.0"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
pdoc = "^14.0.0"
[tool.poetry.scripts]
# [[tool.poetry.source]]
# name = "PyPI"
# priority = "default"
# [[tool.poetry.source]]
# name = "tsinghua"
# url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
# priority = "primary"
[tool.semantic_release]
branch = "master"
build_command = "poetry build"
commit_message = 'chore(release): release version v{version}'
version_variables = ["codedog/version.py:VERSION"]
version_toml = ["pyproject.toml:tool.poetry.version"]
[tool.semantic_release.remote]
ignore_token_for_push = true
[tool.semantic_release.publish]
upload_to_vcs_release = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"