cvat-cli 2.62.0__tar.gz → 2.64.0__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 (24) hide show
  1. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/PKG-INFO +2 -2
  2. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/pyproject.toml +1 -1
  3. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/commands_functions.py +8 -0
  4. cvat_cli-2.64.0/src/cvat_cli/version.py +1 -0
  5. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli.egg-info/PKG-INFO +2 -2
  6. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli.egg-info/requires.txt +1 -1
  7. cvat_cli-2.62.0/src/cvat_cli/version.py +0 -1
  8. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/README.md +0 -0
  9. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/setup.cfg +0 -0
  10. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/__init__.py +0 -0
  11. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/__main__.py +0 -0
  12. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/__init__.py +0 -0
  13. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/agent.py +0 -0
  14. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/command_base.py +0 -0
  15. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/commands_all.py +0 -0
  16. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/commands_projects.py +0 -0
  17. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/commands_tasks.py +0 -0
  18. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/common.py +0 -0
  19. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/parsers.py +0 -0
  20. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli/_internal/utils.py +0 -0
  21. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli.egg-info/SOURCES.txt +0 -0
  22. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli.egg-info/dependency_links.txt +0 -0
  23. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli.egg-info/entry_points.txt +0 -0
  24. {cvat_cli-2.62.0 → cvat_cli-2.64.0}/src/cvat_cli.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cvat-cli
3
- Version: 2.62.0
3
+ Version: 2.64.0
4
4
  Summary: Command-line client for CVAT
5
5
  Author-email: "CVAT.ai Corporation" <support@cvat.ai>
6
6
  License-Expression: MIT
@@ -9,7 +9,7 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
- Requires-Dist: cvat-sdk==2.62.0
12
+ Requires-Dist: cvat-sdk==2.64.0
13
13
  Requires-Dist: attrs>=24.2.0
14
14
  Requires-Dist: Pillow>=10.3.0
15
15
 
@@ -16,7 +16,7 @@ classifiers = [
16
16
  ]
17
17
  requires-python = ">=3.10"
18
18
  dependencies = [
19
- "cvat-sdk==2.62.0",
19
+ "cvat-sdk==2.64.0",
20
20
 
21
21
  "attrs>=24.2.0",
22
22
  "Pillow>=10.3.0",
@@ -34,6 +34,12 @@ class FunctionCreateNative:
34
34
  "name",
35
35
  help="a human-readable name for the function",
36
36
  )
37
+ parser.add_argument(
38
+ "--visibility",
39
+ choices=("private", "public"),
40
+ default="private",
41
+ help="visibility setting for the function",
42
+ )
37
43
 
38
44
  configure_function_implementation_arguments(parser)
39
45
 
@@ -65,6 +71,7 @@ class FunctionCreateNative:
65
71
  client: Client,
66
72
  *,
67
73
  name: str,
74
+ visibility: str,
68
75
  function_loader: FunctionLoader,
69
76
  ) -> None:
70
77
  function = function_loader.load()
@@ -72,6 +79,7 @@ class FunctionCreateNative:
72
79
  remote_function: dict[str, Any] = {
73
80
  "provider": FUNCTION_PROVIDER_NATIVE,
74
81
  "name": name,
82
+ "visibility": visibility,
75
83
  }
76
84
 
77
85
  spec = function.spec
@@ -0,0 +1 @@
1
+ VERSION = "2.64.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cvat-cli
3
- Version: 2.62.0
3
+ Version: 2.64.0
4
4
  Summary: Command-line client for CVAT
5
5
  Author-email: "CVAT.ai Corporation" <support@cvat.ai>
6
6
  License-Expression: MIT
@@ -9,7 +9,7 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
- Requires-Dist: cvat-sdk==2.62.0
12
+ Requires-Dist: cvat-sdk==2.64.0
13
13
  Requires-Dist: attrs>=24.2.0
14
14
  Requires-Dist: Pillow>=10.3.0
15
15
 
@@ -1,3 +1,3 @@
1
- cvat-sdk==2.62.0
1
+ cvat-sdk==2.64.0
2
2
  attrs>=24.2.0
3
3
  Pillow>=10.3.0
@@ -1 +0,0 @@
1
- VERSION = "2.62.0"
File without changes
File without changes