-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.77 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
[tool.poetry]
name = "ebert"
version = "0.1.0"
description = "AI code review CLI - LLM-agnostic, supports Claude, GPT, Gemini, Ollama"
license = "MIT"
readme = "README.md"
packages = [{include = "ebert", from = "src"}]
keywords = ["ai", "code-review", "llm", "cli", "git", "diff", "claude", "gpt", "gemini", "ollama", "openai", "anthropic"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Version Control :: Git",
]
[tool.poetry.scripts]
ebert = "ebert.cli:app"
[tool.poetry.dependencies]
python = "^3.11"
typer = ">=0.9.0,<0.12.0"
click = ">=8.1.0,<8.2.0"
rich = "^13.7.0"
pydantic = "^2.5.0"
pydantic-settings = "^2.1.0"
pyyaml = "^6.0.1"
google-generativeai = {version = "^0.8.0", optional = true}
openai = {version = "^1.0.0", optional = true}
anthropic = {version = "^0.39.0", optional = true}
httpx = "^0.27.0"
[tool.poetry.extras]
gemini = ["google-generativeai"]
openai = ["openai"]
anthropic = ["anthropic"]
all = ["google-generativeai", "openai", "anthropic"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
mypy = "^1.8.0"
ruff = "^0.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
indent-width = 2
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP"]
[tool.ruff.lint.per-file-ignores]
"src/ebert/cli.py" = ["B008"] # Allow typer.Argument/Option in defaults
[tool.mypy]
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]