-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 1.87 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "loadpath"
version = "0.1.0"
description = "Architecture-typed impact graphs for Django + React pull requests. Local load-path review, not a hunk-comment bot."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Loadpath" }]
keywords = ["django", "react", "code-review", "architecture", "mcp"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.9.0",
"pydantic-settings>=2.6.0",
"pyyaml>=6.0.2",
"httpx>=0.27.0",
"jinja2>=3.1.4",
"typer>=0.15.0",
"rich>=13.9.0",
"python-multipart>=0.0.12",
"mcp>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"respx>=0.21.0",
"playwright>=1.49.0",
]
[project.urls]
Homepage = "https://github.com/Modsofthenation/PR-Reviewer"
Repository = "https://github.com/Modsofthenation/PR-Reviewer"
Issues = "https://github.com/Modsofthenation/PR-Reviewer/issues"
Documentation = "https://github.com/Modsofthenation/PR-Reviewer#readme"
"Bug Tracker" = "https://github.com/Modsofthenation/PR-Reviewer/issues"
[project.scripts]
loadpath = "loadpath.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
loadpath = ["report/*.html", "static/**/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q --tb=short"
markers = [
"playwright: UI tests that need Chromium",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.ruff]
line-length = 100
target-version = "py312"