36 lines
628 B
TOML
36 lines
628 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ghostqa"
|
|
version = "0.1.0"
|
|
description = "AI-powered visual GUI testing via natural language"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pyyaml>=6.0",
|
|
"httpx>=0.25",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"pytest-cov>=4.0",
|
|
]
|
|
claude = [
|
|
"anthropic>=0.18",
|
|
]
|
|
browser-use = [
|
|
"browser-use>=0.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
ghostqa = "ghostqa.__main__:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|