uipath 2.0.10__py3-none-any.whl → 2.0.11__py3-none-any.whl
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 uipath might be problematic. Click here for more details.
- uipath/_cli/cli_init.py +2 -1
- uipath/_cli/cli_pack.py +1 -1
- {uipath-2.0.10.dist-info → uipath-2.0.11.dist-info}/METADATA +2 -1
- {uipath-2.0.10.dist-info → uipath-2.0.11.dist-info}/RECORD +7 -7
- {uipath-2.0.10.dist-info → uipath-2.0.11.dist-info}/WHEEL +0 -0
- {uipath-2.0.10.dist-info → uipath-2.0.11.dist-info}/entry_points.txt +0 -0
- {uipath-2.0.10.dist-info → uipath-2.0.11.dist-info}/licenses/LICENSE +0 -0
uipath/_cli/cli_init.py
CHANGED
|
@@ -3,6 +3,7 @@ import json
|
|
|
3
3
|
import os
|
|
4
4
|
import traceback
|
|
5
5
|
import uuid
|
|
6
|
+
from pathlib import Path
|
|
6
7
|
from typing import Optional
|
|
7
8
|
|
|
8
9
|
import click
|
|
@@ -75,7 +76,7 @@ def init(entrypoint: str) -> None:
|
|
|
75
76
|
try:
|
|
76
77
|
args = generate_args(script_path)
|
|
77
78
|
|
|
78
|
-
relative_path =
|
|
79
|
+
relative_path = Path(script_path).relative_to(current_directory).as_posix()
|
|
79
80
|
|
|
80
81
|
config_data = {
|
|
81
82
|
"entryPoints": [
|
uipath/_cli/cli_pack.py
CHANGED
|
@@ -232,7 +232,7 @@ def pack_fn(projectName, description, entryPoints, version, authors, directory):
|
|
|
232
232
|
os.makedirs(".uipath", exist_ok=True)
|
|
233
233
|
|
|
234
234
|
# Define the allowlist of file extensions to include
|
|
235
|
-
file_extensions_allowlist = [".py", ".mermaid", ".json"]
|
|
235
|
+
file_extensions_allowlist = [".py", ".mermaid", ".json", ".yaml", ".yml"]
|
|
236
236
|
|
|
237
237
|
with zipfile.ZipFile(
|
|
238
238
|
f".uipath/{projectName}.{version}.nupkg", "w", zipfile.ZIP_DEFLATED
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.11
|
|
4
4
|
Summary: Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools.
|
|
5
5
|
Project-URL: Homepage, https://uipath.com
|
|
6
6
|
Project-URL: Repository, https://github.com/UiPath/uipath-python
|
|
@@ -16,6 +16,7 @@ Requires-Python: >=3.10
|
|
|
16
16
|
Requires-Dist: click>=8.1.8
|
|
17
17
|
Requires-Dist: httpx>=0.28.1
|
|
18
18
|
Requires-Dist: opentelemetry-sdk>=1.32.1
|
|
19
|
+
Requires-Dist: pathlib>=1.0.1
|
|
19
20
|
Requires-Dist: pydantic>=2.11.1
|
|
20
21
|
Requires-Dist: pytest-asyncio>=0.25.3
|
|
21
22
|
Requires-Dist: python-dotenv>=1.0.1
|
|
@@ -8,9 +8,9 @@ uipath/_cli/README.md,sha256=GLtCfbeIKZKNnGTCsfSVqRQ27V1btT1i2bSAyW_xZl4,474
|
|
|
8
8
|
uipath/_cli/__init__.py,sha256=CAyMecQhBBD6s4MzYQNa01bz0TIXXCqkQ5DR2kCb00w,1574
|
|
9
9
|
uipath/_cli/cli_auth.py,sha256=ANaYUc2q1t0hDbGBRT3ags6K6Lef_3tyC8Mmc611jow,3141
|
|
10
10
|
uipath/_cli/cli_deploy.py,sha256=h8qwJkXnW6JURsg4YcocJInGA4dwkl4CZkpT1Cn9A3c,268
|
|
11
|
-
uipath/_cli/cli_init.py,sha256=
|
|
11
|
+
uipath/_cli/cli_init.py,sha256=idoqlGhhzXZKmLAg-3JgZ2fYMrK7qFXYV0EhnNaI3bg,3738
|
|
12
12
|
uipath/_cli/cli_new.py,sha256=SP7eWOa5valmCpc8UsOCIezL25euhglB3yJkx-N92W8,1903
|
|
13
|
-
uipath/_cli/cli_pack.py,sha256=
|
|
13
|
+
uipath/_cli/cli_pack.py,sha256=x7Je61NYzR7CR8TUoT-xeZMrXXFAsXO9PGFDUVfBU8s,12876
|
|
14
14
|
uipath/_cli/cli_publish.py,sha256=_b9rehjsbxwkpH5_DtgFUaWWJqcZTg5nate-M5BnE_c,3586
|
|
15
15
|
uipath/_cli/cli_run.py,sha256=dV0a-sx78T0HJHArfZP2M9YhT8d8aOuf-9OdkBqj3fE,4577
|
|
16
16
|
uipath/_cli/middlewares.py,sha256=IiJgjsqrJVKSXx4RcIKHWoH-SqWqpHPbhzkQEybmAos,3937
|
|
@@ -73,8 +73,8 @@ uipath/tracing/__init__.py,sha256=mQEKHs47ufpy3MxphTJRh6AQsH90y6pWW80Nqbs0Q9c,15
|
|
|
73
73
|
uipath/tracing/_otel_exporters.py,sha256=Fo10ofCWGd6PN5ndEsHkw6FZgQT5zOlob2XGnkiWvZE,2056
|
|
74
74
|
uipath/tracing/_traced.py,sha256=HareJwZXD_z1EtaMrSDdK14AVH_sBmelIkG3hag6WaY,6271
|
|
75
75
|
uipath/tracing/_utils.py,sha256=5SwsTGpHkIouXBndw-u8eCLnN4p7LM8DsTCCuf2jJgs,10165
|
|
76
|
-
uipath-2.0.
|
|
77
|
-
uipath-2.0.
|
|
78
|
-
uipath-2.0.
|
|
79
|
-
uipath-2.0.
|
|
80
|
-
uipath-2.0.
|
|
76
|
+
uipath-2.0.11.dist-info/METADATA,sha256=O6WfWWHpcCoTMQ34tUCQJszVUa2vXaOy2q4f_mrrze0,6078
|
|
77
|
+
uipath-2.0.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
78
|
+
uipath-2.0.11.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
79
|
+
uipath-2.0.11.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
80
|
+
uipath-2.0.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|