-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (105 loc) · 3.39 KB
/
pyproject.toml
File metadata and controls
117 lines (105 loc) · 3.39 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bluebox-lib"
version = "1.3.2"
description = "Library for reverse engineering web apps"
readme = "README.md"
requires-python = ">=3.12.3,<3.13"
license = {text = "Apache-2.0"}
authors = [
{name = "Vectorly", email = "contact@vectorly.app"}
]
keywords = [
"web-scraping",
"automation",
"cdp",
"chrome-devtools",
"api-discovery",
"reverse-engineering",
"browser-automation",
"library",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Testing",
]
dependencies = [
"anthropic>=0.77.1",
"beautifulsoup4>=4.14.2",
"ipykernel>=6.29.5",
"jmespath>=1.0.1,<2",
"jsonschema>=4.20.0",
"openai>=2.6.1",
"prompt_toolkit>=3.0.0",
"pydantic>=2.11.4",
"pylint>=3.0.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"python-dotenv>=1.2.1",
"regex>=2024.0.0",
"requests>=2.31.0",
"rich>=13.0.0",
"textual>=1.0.0",
"tldextract>=5.1.0",
"toonify[pydantic]>=1.5.1",
"websocket-client>=1.6.0",
"websockets>=15.0.1",
]
[project.optional-dependencies]
dev = [
"ipykernel>=6.29.5",
]
[project.scripts]
# Core commands
bluebox-monitor = "bluebox.scripts.browser_monitor:main"
bluebox-discover = "bluebox.scripts.discover_routine:main"
bluebox-agent-adapter = "bluebox.scripts.agent_http_adapter:main"
bluebox-execute = "bluebox.scripts.execute_routine:main"
# Guide agent
bluebox-guide = "bluebox.scripts.run_guide_agent:main"
# Specialist agents
bluebox-agent = "bluebox.scripts.run_bluebox_agent:main"
bluebox-dumb-agent = "bluebox.scripts.run_dumb_agent:main"
bluebox-experiment-worker-agent = "bluebox.scripts.specialists.run_experiment_worker_agent:main"
bluebox-routine-inspector-agent = "bluebox.scripts.specialists.run_routine_inspector_agent:main"
bluebox-dom-specialist = "bluebox.scripts.specialists.run_dom_specialist:main"
bluebox-network-specialist = "bluebox.scripts.specialists.run_network_specialist:main"
bluebox-js-specialist = "bluebox.scripts.specialists.run_js_specialist:main"
bluebox-interaction-specialist = "bluebox.scripts.specialists.run_interaction_specialist:main"
bluebox-value-trace-resolver-specialist = "bluebox.scripts.specialists.run_value_trace_resolver_specialist:main"
# API indexing pipeline
bluebox-api-index = "bluebox.scripts.api_indexing.run_api_indexing:main"
# Dev tools
bluebox-benchmarks = "bluebox.scripts.run_benchmarks:main"
[project.urls]
Homepage = "https://vectorly.app"
Documentation = "https://github.com/VectorlyApp/bluebox#readme"
Repository = "https://github.com/VectorlyApp/bluebox"
Issues = "https://github.com/VectorlyApp/bluebox/issues"
[tool.hatch.build.targets.wheel]
packages = ["bluebox"]
[tool.hatch.build.targets.sdist]
include = [
"/bluebox",
"/tests",
"/example_data/example_routines",
"README.md",
"LICENSE",
"pyproject.toml",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore::pytest.PytestConfigWarning",
]