-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (97 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
105 lines (97 loc) · 2.42 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "operator-use"
version = "0.2.9"
description = "A personal assistant that operates your computer. Just like you."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.11.7",
"openai>=1.93.0",
"anthropic>=0.68.1",
"ollama>=0.5.1",
"google-genai>=1.45.0",
"groq>=0.29.0",
"mistralai==1.9.11",
"cerebras-cloud-sdk>=1.50.1",
"fastmcp>=2.0.0",
"pillow>=11.2.1",
"python-telegram-bot>=22.0",
"slack-bolt>=1.18.0",
"aiohttp>=3.9.0",
"discord.py>=2.0.0",
"twitchio>=2.0.0,<3.0.0",
"ipykernel>=7.2.0",
"qq-botpy>=1.2.1",
"lark-oapi>=1.5.3",
"ddgs>=9.11.1",
"markdownify>=0.13.1",
"httpx>=0.28.1",
"croniter>=2.0.0",
"tabulate>=0.9.0",
"questionary>=2.1.1",
"rich>=14.3.3",
"inquirerpy>=0.3.4",
"typer>=0.24.1",
"pydantic-settings>=2.13.1",
"sarvamai>=0.1.26",
"aiomqtt>=2.0.0",
"platformdirs>=4.0.0",
"psutil>=7.0.0",
"pynacl>=1.6.2",
"comtypes>=1.4.15; sys_platform == 'win32'",
"pywin32>=311; sys_platform == 'win32'",
"pyobjc-framework-Cocoa>=10.0; sys_platform == 'darwin'",
"pyobjc-framework-Quartz>=10.0; sys_platform == 'darwin'",
"pyobjc-framework-ApplicationServices>=10.0; sys_platform == 'darwin'",
]
[project.scripts]
operator = "operator_use.cli.commands:app"
operator-use = "operator_use.cli.commands:app"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-benchmark>=4.0.0",
"ruff>=0.9.0",
]
fal = [
"fal-client>=0.5.0",
]
exa = [
"exa-py>=1.0.0",
]
tavily = [
"tavily-python>=0.5.0",
]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.ruff]
line-length = 100
target-version = "py312"
exclude = [
"operator_use/web/cdp/",
"operator_use/computer/macos/ax/",
"operator_use/computer/windows/uia/",
"operator_use/computer/windows/vdm/",
]
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"*/__init__.py" = ["F401"]
"operator_use/cli/start.py" = ["E402"]
"operator_use/cli/setup.py" = ["E402"]
"operator_use/cli/commands.py" = ["E402"]
"operator_use/web/subagent.py" = ["E402"]
"operator_use/computer/subagent.py" = ["E402"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = ["operator_use"]
include = [
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md",
]