forked from browser-use/web-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (62 loc) · 2.09 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "browser-use-web-ui"
version = "0.1.0"
description = "A web intefrace for browser use"
authors = [{name = "Browser Use"}]
requires-python = ">= 3.11, < 3.12"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [ "python-dotenv>=1.0.1,<2", "browser-use>=0.1.29,<0.1.30", "langchain-google-genai>=2.0.8,<3", "gradio>=5.13.1,<6", "langchain-ollama>=0.2.2,<0.3", "langchain-openai>=0.3.1,<0.4", "pytz>=2024.2,<2025", "importlib-metadata>=8.5.0,<9", "pyperclip==1.9.0",
]
[project.urls]
Homepage = "https://github.com/browser-use/web-ui"
Repository = "https://github.com/browser-use/web-ui.git"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.pixi.pypi-dependencies]
browser-use-web-ui = { path = ".", editable = true }
[tool.pixi.tasks]
test = "pytest tests/"
lint = "ruff check ."
format = "ruff format ."
docs = "cd docs; quarto render"
mkdocs = "mkdocs serve"
webui = "python -m webui --ip 127.0.0.1 --port 7788"
install-cli = "pip install -e ."
install-quarto-extensions = '''
cd docs;
quarto add quarto-ext/fontawesome;
quarto install extension grantmcdermott/quarto-revealjs-clean;
quarto install extension mikemahoney218/quarto-arxiv;
quarto install tinytex;
'''
[tool.pixi.dependencies]
pytest = ">=8.3.4,<9"
pytest-cov = ">=6.0.0,<7"
pytest-mock = ">=3.14.0,<4"
typer = ">=0.15.1,<0.16"
typing = ">=3.10.0.0,<4"
quarto = ">=1.6.40,<2"
json-repair = ">=0.35.0,<0.36"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra -q"
markers = ["integration: marks tests as integration tests that require real credentials"]
[tool.ruff]
select = ["E", "F", "I", "N", "W", "B", "UP"]
line-length = 100