-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 775 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 775 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
[project]
name = "codeppr"
version = "0.1.4"
description = "An AI-assisted code review agent that saves you from bad commits by running its analysis during the pre-commit stage."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [{ name = "Piyush Gupta" }]
dependencies = [
"click>=8.3.1",
"keyring>=25.7.0",
"keyrings-alt>=5.0.2",
"langchain>=1.2.2",
"langchain-anthropic>=1.3.1",
"langchain-google-genai>=4.1.3",
"langchain-openai>=1.1.7",
"platformdirs>=4.5.1",
"pydantic>=2.12.5",
]
[project.scripts]
codeppr = "codeppr.cli:cli"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Repository = "https://github.com/fampiyush/codeppr"