-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.73 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
[project]
name = "reviewd"
version = "0.6.3"
description = "Local AI code reviewer for GitHub and BitBucket PRs — uses Claude, Gemini, or Codex CLI to review pull requests and post structured comments"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [{name = "Simion Agavriloaei", email = "hi@simion.cv"}]
keywords = ["code-review", "ai", "github", "bitbucket", "pull-request", "claude", "gemini", "codex", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"click>=8.3.1,<9",
"httpx>=0.28.1,<1",
"pyyaml>=6.0,<7",
"questionary>=2.1.1,<3",
]
[project.scripts]
reviewd = "reviewd.cli:main"
[project.urls]
Homepage = "https://github.com/simion/reviewd"
Repository = "https://github.com/simion/reviewd"
Issues = "https://github.com/simion/reviewd/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/reviewd"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["tests"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"respx>=0.22",
"ruff>=0.8",
"black>=24",
"pre-commit>=4",
]
[tool.ruff]
target-version = "py312"
line-length = 120
src = ["src"]
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "N"]
ignore = ["SIM108"]
[tool.ruff.lint.per-file-ignores]
"src/reviewd/prompt.py" = ["E501"]
[tool.black]
target-version = ["py312"]
line-length = 120
skip-string-normalization = true
preview = true