chore: import upstream snapshot with attribution
CI: cua-driver distro-compat matrix / debian:12 (glibc 2.36) (push) Has been cancelled
CI: SPDX Headers / Check SPDX headers (warn-only) (push) Has been cancelled
CD: Docs MCP Server / build (linux/amd64) (push) Has been cancelled
CD: Docs MCP Server / build (linux/arm64) (push) Has been cancelled
CD: Docs MCP Server / merge (push) Has been cancelled
CI: cua-driver distro-compat matrix / Resolve release version (push) Has been cancelled
CI: cua-driver distro-compat matrix / fedora:41 (glibc 2.40) (push) Has been cancelled
CI: cua-driver distro-compat matrix / rockylinux:9 (glibc 2.34) (push) Has been cancelled
CI: cua-driver distro-compat matrix / ubuntu:22.04 (glibc 2.35) (push) Has been cancelled
CI: cua-driver distro-compat matrix / ubuntu:24.04 (glibc 2.39) (push) Has been cancelled
CI: cua-driver distro-compat matrix / Distro compat summary (push) Has been cancelled
CI: Rust Linux unit / Rust Linux unit and compile (push) Has been cancelled
CI: Rust Windows unit / Rust Windows unit and compile (push) Has been cancelled
CI: Nix Linux Rust source / Nix / compositor build (push) Has been cancelled
CI: Nix Linux Rust source / Nix / driver package (push) Has been cancelled
CI: Nix Linux Rust source / Nix / Rust unit tests (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:03:19 +08:00
commit 91e75e620b
3227 changed files with 1307078 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
[bumpversion]
current_version = 0.1.1
commit = True
tag = True
tag_name = cloud-v{new_version}
message = Bump cua-cloud to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:cua_cloud/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
+14
View File
@@ -0,0 +1,14 @@
# cua-cloud
Placeholder package for the future Cua Cloud Python SDK.
## Installation
```bash
pip install cua-cloud
```
## Status
This package is intentionally empty today. It exists to reserve the package
name and provide a stable place for future Cua Cloud Python APIs.
@@ -0,0 +1,5 @@
"""Placeholder package for future Cua Cloud Python SDK."""
__version__ = "0.1.1"
__all__ = ["__version__"]
+49
View File
@@ -0,0 +1,49 @@
[project]
name = "cua-cloud"
version = "0.1.1"
description = "Placeholder package for future Cua Cloud Python SDK."
readme = "README.md"
license = "MIT"
authors = [
{ name = "TryCua", email = "hello@trycua.com" }
]
keywords = [
"cua",
"cloud",
"computer-use",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.11,<3.14"
dependencies = []
[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"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"cua_cloud/**",
"README.md",
]
exclude = [
"cua_cloud/**/__pycache__",
]
[tool.hatch.build.targets.wheel]
packages = ["cua_cloud"]
@@ -0,0 +1,18 @@
from __future__ import annotations
import importlib
import pathlib
import tomllib
def test_placeholder_package_metadata() -> None:
repo_root = pathlib.Path(__file__).resolve().parents[4]
pyproject_path = repo_root / "libs/python/cua-cloud/pyproject.toml"
package = importlib.import_module("cua_cloud")
assert package.__version__ == "0.1.0"
project = tomllib.loads(pyproject_path.read_text())["project"]
assert project["name"] == "cua-cloud"
assert project["description"] == "Placeholder package for future Cua Cloud Python SDK."