-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
77 lines (71 loc) · 1.69 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
72
73
74
75
76
77
[project]
name = "openoperator"
description = "Operate any browser, desktop, device or robot."
authors = [
{ name = "Kevin Raetz" }
]
version = "0.1.4"
readme = "README.md"
requires-python = ">=3.11,<4.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"langchain==0.3.14",
"langchain-openai==0.3.2",
"langchain-anthropic==0.3.3",
"langchain-ollama==0.2.2",
"langchain-google-genai==2.0.8",
"langchain-fireworks==0.2.6",
"langchain-aws==0.2.11",
"langchain-groq==0.2.3",
"langchain-google-vertexai==2.0.12",
"langchain-deepseek-official==0.1.0",
"langchain-together>=0.3.0",
"tld==0.13",
"maincontentextractor==0.0.4",
"beautifulsoup4==4.12.3",
"httpx==0.28.1",
"pydantic==2.10.6",
"python-dotenv==1.0.1",
"requests==2.32.3",
"posthog==3.11.0",
"playwright==1.49.1",
"setuptools==75.8.0",
"lmnr[langchain]==0.4.56",
"langchain-huggingface>=0.1.2",
]
[project.optional-dependencies]
dev = [
"tokencost==0.1.16",
"hatch==1.13.0",
"build==1.2.2",
"pytest==8.3.3",
"pytest-asyncio==0.24.0",
"black==24.10.0",
]
examples = [
"discord==2.3.2",
"fastapi>=0.115.7",
"pypdf2==3.0.1",
"slack-sdk>=3.34.0",
"uvicorn>=0.34.0",
]
[tool.ruff]
line-length = 130
[tool.ruff.lint]
select = ["E", "F", "I"]
extend-ignore = ["E501"]
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
docstring-code-format = true
[tool.black]
line-length = 130
target-version = ["py311"]
skip-string-normalization = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"