cua-fleet 0.0.2__py3-none-any.whl

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/__init__.py ADDED
@@ -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,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,5 @@
1
+ cua_fleet/__init__.py,sha256=bvGJ1HIMkE_DyT7XE2Ett8w0YRNJBjN28jPXjZ1xobQ,372
2
+ cua_fleet-0.0.2.dist-info/METADATA,sha256=xjRzI8mPqZSnF__Zw2DJunSph1BtNwuuO43F-cPH7yo,1607
3
+ cua_fleet-0.0.2.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
4
+ cua_fleet-0.0.2.dist-info/licenses/LICENSE,sha256=wHeSkMHUeDFpqj2_tV_rUF5WPvigBLv1UpjO_8-9qNk,1069
5
+ cua_fleet-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -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.