-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.05 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
[project]
name = "slop-fixer"
version = "0.1.0"
description = "GitHub App that analyzes React PRs for UI slop using browser screenshots and Gemini multimodal analysis"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"agentor>=0.0.21",
"google-genai>=1.0.0",
"PyGithub>=2.6.0",
"PyJWT[crypto]>=2.9.0",
"httpx>=0.28.0",
"pyyaml>=6.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"python-dotenv>=1.0.0",
"boto3>=1.34.0",
"Pillow>=10.2.0",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.25.0",
"pytest-httpx>=0.35.0",
"ruff>=0.9.0",
]
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = [
"agent",
"browser",
"config",
"github_client",
"models",
"prompts",
"server",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]