mirror of
https://github.com/microsoft/fara.git
synced 2026-08-21 17:50:45 +08:00
97 lines
2.2 KiB
TOML
97 lines
2.2 KiB
TOML
[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",
|
|
"pydantic",
|
|
"markitdown",
|
|
"tiktoken",
|
|
]
|
|
|
|
|
|
|
|
|
|
[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==0.19.1 + transformers>=5.2.0 is the tested serving stack for the
|
|
# Qwen3.5-based Fara-1.5 models. nvidia-cutlass-dsl is capped below 4.6
|
|
# because 4.6.0.dev0 removed the `cute.core.ThrMma` alias that quack (a
|
|
# transitive vLLM dep) uses, crashing vLLM at startup.
|
|
vllm = ["vllm==0.19.1", "transformers>=5.2.0", "nvidia-cutlass-dsl==4.5.2"]
|
|
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",
|
|
"src/fara/**/*.js",
|
|
]
|
|
exclude = [
|
|
"**/__pycache__",
|
|
"**/.*.swp",
|
|
]
|
|
ignore-vcs = true
|