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.
- {pctr-0.2.0/src/pctr.egg-info → pctr-0.2.1}/PKG-INFO +4 -1
- {pctr-0.2.0 → pctr-0.2.1}/pyproject.toml +5 -1
- {pctr-0.2.0 → pctr-0.2.1/src/pctr.egg-info}/PKG-INFO +4 -1
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr.egg-info/requires.txt +4 -0
- {pctr-0.2.0 → pctr-0.2.1}/LICENSE +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/README.md +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/setup.cfg +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr/__init__.py +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr/__main__.py +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr/cli.py +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr/data/AGENTS.md +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr/data/SKILL.md +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr.egg-info/SOURCES.txt +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr.egg-info/dependency_links.txt +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr.egg-info/entry_points.txt +0 -0
- {pctr-0.2.0 → pctr-0.2.1}/src/pctr.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pctr
|
|
3
|
-
Version: 0.2.
|
|
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.
|
|
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.
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|