robot-appium-vision 0.1.0__tar.gz → 0.1.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.

Potentially problematic release.


This version of robot-appium-vision might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robot-appium-vision
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Robot Framework Appium keyword library with OCR and image-based actions
5
5
  Author-email: Khajavali <dudekulakhaja786@gmail.com>
6
6
  License: MIT License
@@ -49,7 +49,12 @@ class AppiumKeywords:
49
49
  pytesseract.pytesseract.tesseract_cmd = tesseract_cmd
50
50
 
51
51
  # Runtime dependency validation
52
- self._check_runtime_dependencies()
52
+ try:
53
+ self._check_runtime_dependencies()
54
+ except Exception as e:
55
+ logger.warn(
56
+ f"⚠️ Dependency check skipped during initialization:\n{e}"
57
+ )
53
58
 
54
59
  # ---------------------------------------------------------------------
55
60
  @keyword
@@ -5,9 +5,13 @@ build-backend = "setuptools.build_meta"
5
5
  [tool.setuptools]
6
6
  include-package-data = true
7
7
 
8
+ [project.scripts]
9
+ appium-vision = "appium_vision.cli:main"
10
+
11
+
8
12
  [project]
9
13
  name = "robot-appium-vision"
10
- version = "0.1.0"
14
+ version = "0.1.1"
11
15
  description = "Robot Framework Appium keyword library with OCR and image-based actions"
12
16
  authors = [
13
17
  { name="Khajavali", email="dudekulakhaja786@gmail.com" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robot-appium-vision
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Robot Framework Appium keyword library with OCR and image-based actions
5
5
  Author-email: Khajavali <dudekulakhaja786@gmail.com>
6
6
  License: MIT License
@@ -7,5 +7,6 @@ appium_vision/keywords.py
7
7
  robot_appium_vision.egg-info/PKG-INFO
8
8
  robot_appium_vision.egg-info/SOURCES.txt
9
9
  robot_appium_vision.egg-info/dependency_links.txt
10
+ robot_appium_vision.egg-info/entry_points.txt
10
11
  robot_appium_vision.egg-info/requires.txt
11
12
  robot_appium_vision.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ appium-vision = appium_vision.cli:main