pctr 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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pctr
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Element-based Windows UI Automation CLI for AI agents. Find controls by name/type/id and click, type, hold, drag, and screenshot - no pixel coordinates.
5
5
  Author: Space-lab515
6
6
  License-Expression: MIT
@@ -23,6 +23,9 @@ Requires-Dist: pywinauto>=0.6.8; platform_system == "Windows"
23
23
  Requires-Dist: uiautomation>=2.0; platform_system == "Windows"
24
24
  Requires-Dist: pyautogui>=0.9.54; platform_system == "Windows"
25
25
  Requires-Dist: pydirectinput>=1.0.4; platform_system == "Windows"
26
+ Requires-Dist: pillow>=9.0; platform_system == "Windows"
27
+ Provides-Extra: vision
28
+ Requires-Dist: ultralytics>=8.2; extra == "vision"
26
29
  Dynamic: license-file
27
30
 
28
31
  # pctr
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pctr"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Element-based Windows UI Automation CLI for AI agents. Find controls by name/type/id and click, type, hold, drag, and screenshot - no pixel coordinates."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -29,8 +29,12 @@ dependencies = [
29
29
  "uiautomation>=2.0; platform_system == 'Windows'",
30
30
  "pyautogui>=0.9.54; platform_system == 'Windows'",
31
31
  "pydirectinput>=1.0.4; platform_system == 'Windows'",
32
+ "pillow>=9.0; platform_system == 'Windows'",
32
33
  ]
33
34
 
35
+ [project.optional-dependencies]
36
+ vision = ["ultralytics>=8.2"]
37
+
34
38
  [project.scripts]
35
39
  pctr = "pctr.cli:main"
36
40
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pctr
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Element-based Windows UI Automation CLI for AI agents. Find controls by name/type/id and click, type, hold, drag, and screenshot - no pixel coordinates.
5
5
  Author: Space-lab515
6
6
  License-Expression: MIT
@@ -23,6 +23,9 @@ Requires-Dist: pywinauto>=0.6.8; platform_system == "Windows"
23
23
  Requires-Dist: uiautomation>=2.0; platform_system == "Windows"
24
24
  Requires-Dist: pyautogui>=0.9.54; platform_system == "Windows"
25
25
  Requires-Dist: pydirectinput>=1.0.4; platform_system == "Windows"
26
+ Requires-Dist: pillow>=9.0; platform_system == "Windows"
27
+ Provides-Extra: vision
28
+ Requires-Dist: ultralytics>=8.2; extra == "vision"
26
29
  Dynamic: license-file
27
30
 
28
31
  # pctr
@@ -4,3 +4,7 @@ pywinauto>=0.6.8
4
4
  uiautomation>=2.0
5
5
  pyautogui>=0.9.54
6
6
  pydirectinput>=1.0.4
7
+ pillow>=9.0
8
+
9
+ [vision]
10
+ ultralytics>=8.2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes