cua-computer 0.2.0__tar.gz → 0.2.1__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.
Files changed (28) hide show
  1. {cua_computer-0.2.0 → cua_computer-0.2.1}/PKG-INFO +2 -1
  2. {cua_computer-0.2.0 → cua_computer-0.2.1}/pyproject.toml +4 -3
  3. {cua_computer-0.2.0 → cua_computer-0.2.1}/README.md +0 -0
  4. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/__init__.py +0 -0
  5. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/computer.py +0 -0
  6. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/interface/__init__.py +0 -0
  7. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/interface/base.py +0 -0
  8. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/interface/factory.py +0 -0
  9. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/interface/linux.py +0 -0
  10. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/interface/macos.py +0 -0
  11. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/interface/models.py +0 -0
  12. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/logger.py +0 -0
  13. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/models.py +0 -0
  14. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/__init__.py +0 -0
  15. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/base.py +0 -0
  16. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/cloud/__init__.py +0 -0
  17. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/cloud/provider.py +0 -0
  18. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/factory.py +0 -0
  19. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/lume/__init__.py +0 -0
  20. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/lume/provider.py +0 -0
  21. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/lume_api.py +0 -0
  22. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/lumier/__init__.py +0 -0
  23. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/providers/lumier/provider.py +0 -0
  24. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/telemetry.py +0 -0
  25. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/ui/__init__.py +0 -0
  26. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/ui/gradio/__init__.py +0 -0
  27. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/ui/gradio/app.py +0 -0
  28. {cua_computer-0.2.0 → cua_computer-0.2.1}/computer/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cua-computer
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Computer-Use Interface (CUI) framework powering Cua
5
5
  Author-Email: TryCua <gh@trycua.com>
6
6
  Requires-Python: >=3.10
@@ -19,6 +19,7 @@ Requires-Dist: datasets<4.0.0,>=3.6.0; extra == "ui"
19
19
  Provides-Extra: all
20
20
  Requires-Dist: gradio<6.0.0,>=5.23.3; extra == "all"
21
21
  Requires-Dist: python-dotenv<2.0.0,>=1.0.1; extra == "all"
22
+ Requires-Dist: datasets<4.0.0,>=3.6.0; extra == "all"
22
23
  Description-Content-Type: text/markdown
23
24
 
24
25
  <div align="center">
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "cua-computer"
9
- version = "0.2.0"
9
+ version = "0.2.1"
10
10
  description = "Computer-Use Interface (CUI) framework powering Cua"
11
11
  readme = "README.md"
12
12
  authors = [
@@ -33,6 +33,7 @@ ui = [
33
33
  all = [
34
34
  "gradio>=5.23.3,<6.0.0",
35
35
  "python-dotenv>=1.0.1,<2.0.0",
36
+ "datasets>=3.6.0,<4.0.0",
36
37
  ]
37
38
 
38
39
  [tool.pdm]
@@ -56,7 +57,7 @@ target-version = [
56
57
 
57
58
  [tool.ruff]
58
59
  line-length = 100
59
- target-version = "0.2.0"
60
+ target-version = "0.2.1"
60
61
  select = [
61
62
  "E",
62
63
  "F",
@@ -70,7 +71,7 @@ docstring-code-format = true
70
71
 
71
72
  [tool.mypy]
72
73
  strict = true
73
- python_version = "0.2.0"
74
+ python_version = "0.2.1"
74
75
  ignore_missing_imports = true
75
76
  disallow_untyped_defs = true
76
77
  check_untyped_defs = true
File without changes