forked from microsoft/fara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (73 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
89 lines (73 loc) · 1.8 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fara"
license = "MIT"
dynamic = ["version"]
description = "Fara"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["agents", "browser-use", "multi-agent", "ai-assistant", "playwright", "web-automation"]
authors = [
{name = "Microsoft Corporation", email = ""}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"playwright==1.51",
"openai",
"pillow",
"tenacity",
"pyyaml",
"jsonschema",
"browserbase",
"pyautogui"
]
[project.urls]
Homepage = "https://github.com/microsoft/fara"
Repository = "https://github.com/microsoft/fara"
Issues = "https://github.com/microsoft/fara/issues"
[project.optional-dependencies]
vllm = ["vllm>=0.10.0"]
lmstudio = ["lmstudio"]
ollama = ["ollama"]
[project.scripts]
fara-cli = "fara.run_fara:main"
[tool.uv]
dev-dependencies = [
"poethepoet",
"ruff==0.4.8",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.poe.tasks]
fmt = "ruff format src"
format.ref = "fmt src"
lint = "ruff check src"
check = ["fmt", "lint"]
[tool.hatch.build.targets.wheel]
include-package-data = true
packages = ["src/fara"]
[tool.hatch.version]
path = "src/fara/version.py"
[tool.hatch.build]
include = [
"src/fara/**/*.py",
"src/fara/**/*.yaml",
"src/fara/**/*.json",
]
exclude = [
"**/__pycache__",
"**/.*.swp",
]
ignore-vcs = true