-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpyproject.toml
47 lines (39 loc) · 920 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["index"]
[project]
name = "lmnr-index"
version = "0.1.9"
description = "Index - SOTA browser AI agent for autonomous task execution on the web"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anthropic[bedrock]>=0.49.0",
"backoff>=2.2.1",
"lmnr[anthropic,openai]>=0.5.1",
"openai>=1.65.2",
"playwright>=1.50.0",
"tenacity>=9.0.0",
"pillow>=11.1.0",
"rich>=13.5.0",
"textual>=0.50.1",
"typer>=0.9.0",
"google-genai>=1.11.0",
]
[project.scripts]
index = "index.cli:main"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3"
]
[project.license]
file = "LICENSE"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v -ra -q"