-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 864 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/bdd_vision"]
[project]
name = "bdd-vision"
version = "0.1.0"
description = "AI-powered BDD testing agent using vision-language models"
requires-python = ">=3.12"
dependencies = [
"click>=8.1",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"httpx>=0.27",
"pillow>=10.0",
"mss>=9.0",
"pyautogui>=0.9.54",
"reportlab>=4.0",
"python-dotenv>=1.0",
"google-generativeai>=0.8",
"anthropic>=0.40",
"websockets>=13.0",
"rich>=13.0",
"loguru>=0.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
]
[project.scripts]
bdd-vision = "bdd_vision.cli.main:cli"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]