-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.31 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
[project]
name = "review-roadmap"
version = "0.1.0"
description = "A CLI tool to generate a roadmap for reviewing GitHub Pull Requests."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"langgraph>=0.0.10",
"langchain-anthropic>=0.1.0",
"langchain-openai>=0.1.0",
"langchain-google-genai>=0.1.0",
"langchain-google-vertexai>=2.0.0",
"anthropic[vertex]>=0.30.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"typer>=0.9.0",
"python-dotenv>=1.0.0",
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"respx>=0.21.0",
"structlog>=24.0.0"
]
[project.scripts]
review_roadmap = "review_roadmap.main:app"
[tool.hatch.build.targets.wheel]
packages = ["review_roadmap"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--cov --cov-report=term-missing --cov-report=html"
testpaths = ["tests"]
[tool.coverage.run]
# Use source_pkgs to track the installed package, not just the source directory
# This works whether installed normally or in editable mode
source_pkgs = ["review_roadmap"]
branch = true
omit = [
"*/__pycache__/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
fail_under = 80
show_missing = true