-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1012 Bytes
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1012 Bytes
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
[project]
name = "web-use"
version = "0.1.0"
description = "An AI Agent that automates web browsing tasks."
authors = [
{ name = "Jeomon George", email = "jeogeoalukka@gmail.com" }
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.13"
dependencies = [
"anthropic>=0.68.1",
"google-genai>=1.45.0",
"openai>=1.93.0",
"groq>=0.29.0",
"ollama>=0.5.1",
"cerebras-cloud-sdk>=1.50.1",
"litellm>=1.72.0",
"mistralai>=1.9.11",
"httpx>=0.28.1",
"markdownify>=1.2.0",
"pillow>=11.2.1",
"pydantic>=2.11.7",
"python-dotenv>=1.0.0",
"rich>=14.0.0",
"termcolor>=3.1.0",
"websockets>=15.0.1",
"pyotp>=2.9.0",
"platformdirs>=4.9.4",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"ruff>=0.12.1",
"ipykernel>=6.29.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
packages = ["src"]