-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.37 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hybrid-browser-mcp"
version = "0.1.0"
description = "A server that exports Camel HybridBrowserToolkit as MCP-compatible tools"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"camel-ai>=0.2.58",
"mcp[cli]>=1.8.1",
"playwright>=1.50.0",
"websockets>=12.0",
"aiofiles>=0.8.0",
"pillow>=10.0.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/hybrid-browser-mcp"
"Bug Tracker" = "https://github.com/yourusername/hybrid-browser-mcp/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"build>=0.10.0",
"twine>=4.0.2",
]
[project.scripts]
hybrid-browser-mcp = "hybrid_browser_mcp.server:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[tool.black]
line-length = 88
target-version = ["py310"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.coverage.run]
source = ["."]
omit = ["tests/*", "setup.py"]
[tool.setuptools]
packages = ["hybrid_browser_mcp"]