-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (62 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
73 lines (62 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zerotoken"
version = "2.0.0"
description = "ZeroToken - Record once, automate forever. A lightweight MCP for agent-driven browser automation."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"pyyaml>=6.0",
"playwright>=1.40.0",
"pydantic>=2.5.0",
"apscheduler>=3.10.4",
"mcp[cli]>=1.0.0",
"pillow>=12.2.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.10",
]
[dependency-groups]
dev = [
"ruff>=0.15.10",
"build>=1.4.0",
"twine>=5.0.0",
]
test = [
"pytest>=7.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.10",
]
[project.scripts]
zerotoken-mcp = "mcp_server:run"
zerotoken-mcp-http = "mcp_server_http:run"
[project.urls]
Homepage = "https://github.com/AMOS144/zerotoken"
Repository = "https://github.com/AMOS144/zerotoken"
[tool.setuptools.packages.find]
include = ["zerotoken*", "handlers*"]
[tool.setuptools]
py-modules = ["mcp_server", "mcp_server_http"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
markers = [
"integration: E2E integration tests requiring real browser (deselect by default)",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
ignore = [
"E722",
]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict_optional = true