cua-fleet 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cua_fleet-0.0.2/.gitignore +220 -0
- cua_fleet-0.0.2/LICENSE +21 -0
- cua_fleet-0.0.2/PKG-INFO +42 -0
- cua_fleet-0.0.2/README.md +21 -0
- cua_fleet-0.0.2/cua_fleet/__init__.py +13 -0
- cua_fleet-0.0.2/pyproject.toml +51 -0
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
**/image/setup.iso
|
|
2
|
+
# Byte-compiled / optimized / DLL files
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
*$py.class
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
node_modules/*
|
|
9
|
+
*/node_modules
|
|
10
|
+
**/node_modules
|
|
11
|
+
# Distribution / packaging
|
|
12
|
+
.Python
|
|
13
|
+
build/
|
|
14
|
+
!libs/lume/scripts/build/
|
|
15
|
+
!libs/cua-driver/scripts/build/
|
|
16
|
+
!libs/cua-driver/tests/fixtures/build/
|
|
17
|
+
!libs/cua-driver/tests/fixtures/build/**
|
|
18
|
+
develop-eggs/
|
|
19
|
+
dist/
|
|
20
|
+
downloads/
|
|
21
|
+
eggs/
|
|
22
|
+
.eggs/
|
|
23
|
+
lib/*
|
|
24
|
+
!libs/lumier/src/lib/
|
|
25
|
+
lib64/
|
|
26
|
+
parts/
|
|
27
|
+
sdist/
|
|
28
|
+
var/
|
|
29
|
+
wheels/
|
|
30
|
+
share/python-wheels/
|
|
31
|
+
*.egg-info/
|
|
32
|
+
.installed.cfg
|
|
33
|
+
*.egg
|
|
34
|
+
MANIFEST
|
|
35
|
+
# PyInstaller
|
|
36
|
+
# Usually these files are written by a python script from a template
|
|
37
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
38
|
+
*.manifest
|
|
39
|
+
*.spec
|
|
40
|
+
# Installer logs
|
|
41
|
+
pip-log.txt
|
|
42
|
+
pip-delete-this-directory.txt
|
|
43
|
+
# Unit test / coverage reports
|
|
44
|
+
htmlcov/
|
|
45
|
+
.tox/
|
|
46
|
+
.nox/
|
|
47
|
+
.coverage
|
|
48
|
+
.coverage.*
|
|
49
|
+
.cache
|
|
50
|
+
nosetests.xml
|
|
51
|
+
coverage.xml
|
|
52
|
+
*.cover
|
|
53
|
+
*.py,cover
|
|
54
|
+
.hypothesis/
|
|
55
|
+
.pytest_cache/
|
|
56
|
+
cover/
|
|
57
|
+
# Translations
|
|
58
|
+
*.mo
|
|
59
|
+
*.pot
|
|
60
|
+
# Django stuff:
|
|
61
|
+
*.log
|
|
62
|
+
local_settings.py
|
|
63
|
+
db.sqlite3
|
|
64
|
+
db.sqlite3-journal
|
|
65
|
+
# Flask stuff:
|
|
66
|
+
instance/
|
|
67
|
+
.webassets-cache
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
# Sphinx documentation
|
|
71
|
+
docs/_build/
|
|
72
|
+
# PyBuilder
|
|
73
|
+
.pybuilder/
|
|
74
|
+
target/
|
|
75
|
+
artifacts/
|
|
76
|
+
# Jupyter Notebook
|
|
77
|
+
.ipynb_checkpoints
|
|
78
|
+
# IPython
|
|
79
|
+
profile_default/
|
|
80
|
+
ipython_config.py
|
|
81
|
+
.pdm.toml
|
|
82
|
+
.pdm-python
|
|
83
|
+
.pdm-build/
|
|
84
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
85
|
+
__pypackages__/
|
|
86
|
+
# Celery stuff
|
|
87
|
+
celerybeat-schedule
|
|
88
|
+
celerybeat.pid
|
|
89
|
+
# SageMath parsed files
|
|
90
|
+
*.sage.py
|
|
91
|
+
# Environments
|
|
92
|
+
.env
|
|
93
|
+
.venv
|
|
94
|
+
env/
|
|
95
|
+
venv/
|
|
96
|
+
ENV/
|
|
97
|
+
env.bak/
|
|
98
|
+
venv.bak/
|
|
99
|
+
# Git worktrees
|
|
100
|
+
.worktrees/
|
|
101
|
+
# Spyder project settings
|
|
102
|
+
.spyderproject
|
|
103
|
+
.spyproject
|
|
104
|
+
# Rope project settings
|
|
105
|
+
.ropeproject
|
|
106
|
+
# mkdocs documentation
|
|
107
|
+
/site
|
|
108
|
+
# mypy
|
|
109
|
+
.mypy_cache/
|
|
110
|
+
.dmypy.json
|
|
111
|
+
dmypy.json
|
|
112
|
+
# Scripts
|
|
113
|
+
server/scripts/
|
|
114
|
+
# Pyre type checker
|
|
115
|
+
.pyre/
|
|
116
|
+
# pytype static type analyzer
|
|
117
|
+
.pytype/
|
|
118
|
+
# Cython debug symbols
|
|
119
|
+
cython_debug/
|
|
120
|
+
# Ruff stuff:
|
|
121
|
+
.ruff_cache/
|
|
122
|
+
# PyPI configuration file
|
|
123
|
+
.pypirc
|
|
124
|
+
# Conda
|
|
125
|
+
.conda/
|
|
126
|
+
# Local environment
|
|
127
|
+
.env.local
|
|
128
|
+
# macOS DS_Store
|
|
129
|
+
.DS_Store
|
|
130
|
+
weights/
|
|
131
|
+
weights/icon_detect/
|
|
132
|
+
weights/icon_detect/model.pt
|
|
133
|
+
weights/icon_detect/model.pt.zip
|
|
134
|
+
weights/icon_detect/model.pt.zip.part*
|
|
135
|
+
libs/python/omniparser/weights/icon_detect/model.pt
|
|
136
|
+
/screenshots/
|
|
137
|
+
/experiments/
|
|
138
|
+
/logs/
|
|
139
|
+
# Xcode
|
|
140
|
+
#
|
|
141
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
142
|
+
## User settings
|
|
143
|
+
xcuserdata/
|
|
144
|
+
## Obj-C/Swift specific
|
|
145
|
+
*.hmap
|
|
146
|
+
## App packaging
|
|
147
|
+
*.ipa
|
|
148
|
+
*.dSYM.zip
|
|
149
|
+
*.dSYM
|
|
150
|
+
## Playgrounds
|
|
151
|
+
timeline.xctimeline
|
|
152
|
+
playground.xcworkspace
|
|
153
|
+
# Swift Package Manager
|
|
154
|
+
#
|
|
155
|
+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
|
156
|
+
# Packages/
|
|
157
|
+
# Package.pins
|
|
158
|
+
# Package.resolved
|
|
159
|
+
# *.xcodeproj
|
|
160
|
+
#
|
|
161
|
+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
|
|
162
|
+
# hence it is not needed unless you have added a package configuration file to your project
|
|
163
|
+
.swiftpm/
|
|
164
|
+
.build/
|
|
165
|
+
/Package.resolved
|
|
166
|
+
# CocoaPods
|
|
167
|
+
#
|
|
168
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
169
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
170
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
171
|
+
#
|
|
172
|
+
# Pods/
|
|
173
|
+
#
|
|
174
|
+
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
|
175
|
+
# *.xcworkspace
|
|
176
|
+
# Carthage
|
|
177
|
+
#
|
|
178
|
+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
|
179
|
+
# Carthage/Checkouts
|
|
180
|
+
Carthage/Build/
|
|
181
|
+
# fastlane
|
|
182
|
+
#
|
|
183
|
+
# It is recommended to not store the screenshots in the git repo.
|
|
184
|
+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
|
|
185
|
+
# For more information about the recommended setup visit:
|
|
186
|
+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
|
187
|
+
fastlane/report.xml
|
|
188
|
+
fastlane/Preview.html
|
|
189
|
+
fastlane/screenshots/**/*.png
|
|
190
|
+
fastlane/test_output
|
|
191
|
+
# Ignore folder
|
|
192
|
+
ignore
|
|
193
|
+
# .release
|
|
194
|
+
.release/
|
|
195
|
+
# Provisioning profiles (generated from CI secrets)
|
|
196
|
+
*.provisionprofile
|
|
197
|
+
# Shared folder
|
|
198
|
+
shared
|
|
199
|
+
# Trajectories
|
|
200
|
+
trajectories/
|
|
201
|
+
# Installation ID Storage
|
|
202
|
+
.storage/
|
|
203
|
+
# Gradio settings
|
|
204
|
+
.gradio_settings.json
|
|
205
|
+
# Lumier Storage
|
|
206
|
+
storage/
|
|
207
|
+
# Trashes
|
|
208
|
+
.Trashes
|
|
209
|
+
.Trash-1000/
|
|
210
|
+
post-provision
|
|
211
|
+
# Local secrets for act
|
|
212
|
+
.secrets
|
|
213
|
+
|
|
214
|
+
# Link checker scripts (dev tools)
|
|
215
|
+
scripts/check-repo-md-links.py
|
|
216
|
+
docs/scripts/check-links.py
|
|
217
|
+
docs/scripts/check-all-links.py
|
|
218
|
+
docs/scripts/check-mdx-links.py
|
|
219
|
+
# Local Windows RE scratch (downloaded PDBs, disassembly scripts)
|
|
220
|
+
.re-windows/
|
cua_fleet-0.0.2/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Cua AI, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
cua_fleet-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cua-fleet
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Reserved for Cua Fleet — fleet orchestration for computer-use agents and sandboxes
|
|
5
|
+
Project-URL: Homepage, https://github.com/trycua/cua
|
|
6
|
+
Project-URL: Documentation, https://docs.trycua.com
|
|
7
|
+
Project-URL: Repository, https://github.com/trycua/cua
|
|
8
|
+
Project-URL: Issues, https://github.com/trycua/cua/issues
|
|
9
|
+
Author-email: TryCua <hello@trycua.com>
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: agents,automation,computer-use,fleet,orchestration,sandbox
|
|
13
|
+
Classifier: Development Status :: 1 - Planning
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
19
|
+
Requires-Python: >=3.9
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# cua-fleet
|
|
23
|
+
|
|
24
|
+
> **Name reservation** — this package name is reserved for **Cua Fleet**, an upcoming
|
|
25
|
+
> component of the [Cua](https://github.com/trycua/cua) project for orchestrating fleets
|
|
26
|
+
> of computer-use agents and sandboxes.
|
|
27
|
+
|
|
28
|
+
This is a placeholder release: it installs an empty module and has no functionality yet.
|
|
29
|
+
Watch [trycua/cua](https://github.com/trycua/cua) for the first real release.
|
|
30
|
+
|
|
31
|
+
In the meantime, check out the unified Cua SDK:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install cua
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Links
|
|
38
|
+
|
|
39
|
+
- Website: [cua.ai](https://cua.ai)
|
|
40
|
+
- Documentation: [docs.trycua.com](https://docs.trycua.com)
|
|
41
|
+
- Repository: [github.com/trycua/cua](https://github.com/trycua/cua)
|
|
42
|
+
- Issues: [github.com/trycua/cua/issues](https://github.com/trycua/cua/issues)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# cua-fleet
|
|
2
|
+
|
|
3
|
+
> **Name reservation** — this package name is reserved for **Cua Fleet**, an upcoming
|
|
4
|
+
> component of the [Cua](https://github.com/trycua/cua) project for orchestrating fleets
|
|
5
|
+
> of computer-use agents and sandboxes.
|
|
6
|
+
|
|
7
|
+
This is a placeholder release: it installs an empty module and has no functionality yet.
|
|
8
|
+
Watch [trycua/cua](https://github.com/trycua/cua) for the first real release.
|
|
9
|
+
|
|
10
|
+
In the meantime, check out the unified Cua SDK:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pip install cua
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- Website: [cua.ai](https://cua.ai)
|
|
19
|
+
- Documentation: [docs.trycua.com](https://docs.trycua.com)
|
|
20
|
+
- Repository: [github.com/trycua/cua](https://github.com/trycua/cua)
|
|
21
|
+
- Issues: [github.com/trycua/cua/issues](https://github.com/trycua/cua/issues)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""cua-fleet — reserved for Cua Fleet.
|
|
2
|
+
|
|
3
|
+
This package name is reserved for Cua Fleet, an upcoming component of the
|
|
4
|
+
Cua project (https://github.com/trycua/cua) for orchestrating fleets of
|
|
5
|
+
computer-use agents and sandboxes.
|
|
6
|
+
|
|
7
|
+
This is a placeholder release with no functionality yet. In the meantime,
|
|
8
|
+
see the unified Cua SDK::
|
|
9
|
+
|
|
10
|
+
pip install cua
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
__version__ = "0.0.2"
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cua-fleet"
|
|
3
|
+
version = "0.0.2"
|
|
4
|
+
description = "Reserved for Cua Fleet — fleet orchestration for computer-use agents and sandboxes"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
authors = [
|
|
8
|
+
{ name = "TryCua", email = "hello@trycua.com" }
|
|
9
|
+
]
|
|
10
|
+
keywords = [
|
|
11
|
+
"computer-use",
|
|
12
|
+
"sandbox",
|
|
13
|
+
"agents",
|
|
14
|
+
"fleet",
|
|
15
|
+
"orchestration",
|
|
16
|
+
"automation",
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 1 - Planning",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Topic :: Software Development :: Libraries",
|
|
25
|
+
]
|
|
26
|
+
requires-python = ">=3.9"
|
|
27
|
+
|
|
28
|
+
dependencies = []
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://github.com/trycua/cua"
|
|
32
|
+
Documentation = "https://docs.trycua.com"
|
|
33
|
+
Repository = "https://github.com/trycua/cua"
|
|
34
|
+
Issues = "https://github.com/trycua/cua/issues"
|
|
35
|
+
|
|
36
|
+
[build-system]
|
|
37
|
+
requires = ["hatchling"]
|
|
38
|
+
build-backend = "hatchling.build"
|
|
39
|
+
|
|
40
|
+
[tool.hatch.build]
|
|
41
|
+
include = [
|
|
42
|
+
"cua_fleet/**",
|
|
43
|
+
"README.md",
|
|
44
|
+
"LICENSE",
|
|
45
|
+
]
|
|
46
|
+
exclude = [
|
|
47
|
+
"cua_fleet/**/__pycache__",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[tool.hatch.build.targets.wheel]
|
|
51
|
+
packages = ["cua_fleet"]
|