@camera.ui/camera-ui-opencv 0.0.1 → 0.0.2

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "OpenCV",
3
3
  "name": "@camera.ui/camera-ui-opencv",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "camera.ui opencv plugin",
6
6
  "author": "seydx (https://github.com/seydx/camera.ui)",
7
7
  "main": "./src/main.py",
@@ -1,6 +0,0 @@
1
- # Python version: 3.11.9
2
- # Server version: 0.0.6
3
- # Dependency version: 0.1.64
4
- numpy==1.26.4
5
- opencv-python==4.10.0.84
6
- camera-ui-python-types==0.1.75
package/ruff.toml DELETED
@@ -1,90 +0,0 @@
1
- # Exclude a variety of commonly ignored directories.
2
- exclude = [
3
- ".bzr",
4
- ".direnv",
5
- ".eggs",
6
- ".git",
7
- ".git-rewrite",
8
- ".hg",
9
- ".ipynb_checkpoints",
10
- ".mypy_cache",
11
- ".nox",
12
- ".pants.d",
13
- ".pyenv",
14
- ".pytest_cache",
15
- ".pytype",
16
- ".ruff_cache",
17
- ".svn",
18
- ".tox",
19
- ".venv",
20
- ".vscode",
21
- "__pypackages__",
22
- "_build",
23
- "buck-out",
24
- "build",
25
- "dist",
26
- "node_modules",
27
- "site-packages",
28
- "venv",
29
- ]
30
-
31
- # Same as Black.
32
- line-length = 110
33
- indent-width = 4
34
-
35
- # Assume Python 3.8
36
- target-version = "py39"
37
-
38
- [lint]
39
- # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
40
- # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
41
- # McCabe complexity (`C901`) by default.
42
- select = [
43
- # pycodestyle
44
- "E",
45
- # Pyflakes
46
- "F",
47
- # pyupgrade
48
- "UP",
49
- # flake8-bugbear
50
- "B",
51
- # flake8-simplify
52
- "SIM",
53
- # isort
54
- "I",
55
- ]
56
- ignore = ["E501", "B023", "B006"]
57
-
58
- # Allow fix for all enabled rules (when `--fix`) is provided.
59
- fixable = ["ALL"]
60
- unfixable = []
61
-
62
- # Allow unused variables when underscore-prefixed.
63
- dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
64
-
65
- [format]
66
- # Like Black, use double quotes for strings.
67
- quote-style = "double"
68
-
69
- # Like Black, indent with spaces, rather than tabs.
70
- indent-style = "space"
71
-
72
- # Like Black, respect magic trailing commas.
73
- skip-magic-trailing-comma = false
74
-
75
- # Like Black, automatically detect the appropriate line ending.
76
- line-ending = "auto"
77
-
78
- # Enable auto-formatting of code examples in docstrings. Markdown,
79
- # reStructuredText code/literal blocks and doctests are all supported.
80
- #
81
- # This is currently disabled by default, but it is planned for this
82
- # to be opt-out in the future.
83
- docstring-code-format = true
84
-
85
- # Set the line length limit used when formatting code snippets in
86
- # docstrings.
87
- #
88
- # This only has an effect when the `docstring-code-format` setting is
89
- # enabled.
90
- docstring-code-line-length = "dynamic"