-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.86 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "webqa-agent"
version = "0.3.0.1"
description = "WebQA Agent is an autonomous web browser agent that audits performance, functionality & UX for engineers and vibe-coding creators."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [
{name = "MigoXLab"}
]
keywords = ["web", "qa", "testing", "automation", "playwright", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: WWW/HTTP :: Browsers",
]
dependencies = [
"anthropic>=0.40.0",
"html2text>=2025.4.15",
"jinja2>=3.1.6",
"langchain==0.3.26",
"langchain-anthropic==0.3.17",
"langchain-core==0.3.68",
"langchain-openai==0.3.27",
"langgraph==0.5.1",
"langgraph-checkpoint==2.1.0",
"openai>=1.93.0",
"pillow==11.3.0",
"playwright==1.58.0",
"pre-commit>=4.5.1",
"pydantic==2.9.2",
"pytest>=8.4.1",
"pytest-asyncio>=1.3.0",
"python-dotenv>=1.1.1",
"pyyaml>=6.0.2",
"requests>=2.32.4",
"typing-extensions==4.14.0",
]
[project.scripts]
webqa-agent = "webqa_agent.cli:main"
[project.urls]
Homepage = "https://github.com/MigoXLab/webqa-agent"
Repository = "https://github.com/MigoXLab/webqa-agent"
Documentation = "https://github.com/MigoXLab/webqa-agent#readme"
Issues = "https://github.com/MigoXLab/webqa-agent/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["webqa_agent*"]
[tool.setuptools.package-data]
webqa_agent = ["static/*", "static/**/*", "crawler/js/*", "templates/*.yaml.example", "templates/**"]