-
-
Notifications
You must be signed in to change notification settings - Fork 834
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (102 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
113 lines (102 loc) · 2.2 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
106
107
108
109
110
111
112
113
[project]
name = "cua-cli"
version = "0.1.8"
description = "Unified CLI for CUA - Computer-Use Agents"
readme = "README.md"
license = "MIT"
authors = [
{ name = "TryCua", email = "hello@trycua.com" }
]
keywords = [
"computer-use",
"cli",
"cloud",
"sandbox",
"agents",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Environment :: Console",
]
requires-python = ">=3.12,<3.14"
dependencies = [
# Core CUA packages
"cua-computer>=0.5.0",
"cua-core>=0.1.18",
# Host automation (used by cua do switch host)
"cua-auto[all]>=0.1.0",
# HTTP client
"aiohttp>=3.9.0",
# CLI output
"rich>=13.0.0",
# Image processing for skills
"pillow>=10.0.0",
# WebSocket for skills recording
"websockets>=12.0",
]
[project.optional-dependencies]
# MCP server support
mcp = [
"fastmcp>=2.0",
]
# Skills recording with LLM captioning
skills = [
"litellm==1.83.0",
]
# Full installation
all = [
"cua-cli[mcp,skills]",
]
# Development
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
"respx>=0.20.0",
]
[project.urls]
Homepage = "https://github.com/trycua/cua"
Documentation = "https://docs.trycua.com"
Repository = "https://github.com/trycua/cua"
Issues = "https://github.com/trycua/cua/issues"
[project.scripts]
cua = "cua_cli.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"cua_cli/**",
"README.md",
"LICENSE",
]
exclude = [
"cua_cli/**/__pycache__",
"cua_cli/**/tests",
"**/.DS_Store",
]
[tool.hatch.build.targets.wheel]
packages = ["cua_cli"]
[tool.hatch.build.targets.sdist]
include = [
"cua_cli/**",
"README.md",
"LICENSE",
"pyproject.toml",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]