thestage 0.5.42__py3-none-any.whl → 0.5.43__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.
- thestage/__init__.py +1 -1
- thestage/color_scheme/color_scheme.py +1 -0
- thestage/main.py +15 -14
- thestage/services/clients/.DS_Store +0 -0
- thestage/services/project/project_service.py +1 -1
- {thestage-0.5.42.dist-info → thestage-0.5.43.dist-info}/METADATA +3 -2
- {thestage-0.5.42.dist-info → thestage-0.5.43.dist-info}/RECORD +10 -10
- {thestage-0.5.42.dist-info → thestage-0.5.43.dist-info}/WHEEL +1 -1
- thestage/.env +0 -6
- {thestage-0.5.42.dist-info → thestage-0.5.43.dist-info}/LICENSE.txt +0 -0
- {thestage-0.5.42.dist-info → thestage-0.5.43.dist-info}/entry_points.txt +0 -0
thestage/__init__.py
CHANGED
thestage/main.py
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
warnings
|
|
4
|
-
|
|
5
|
-
from . import __app_name__
|
|
1
|
+
def main():
|
|
2
|
+
try:
|
|
3
|
+
import warnings
|
|
4
|
+
warnings.filterwarnings(action='ignore', module='.*paramiko.*')
|
|
6
5
|
|
|
7
|
-
from
|
|
8
|
-
config_controller
|
|
6
|
+
from . import __app_name__
|
|
9
7
|
|
|
10
|
-
base_controller
|
|
11
|
-
|
|
12
|
-
base_controller.app.add_typer(project_controller.app, name="project")
|
|
13
|
-
base_controller.app.add_typer(config_controller.app, name="config")
|
|
8
|
+
from thestage.controllers import base_controller, container_controller, instance_controller, project_controller, \
|
|
9
|
+
config_controller
|
|
14
10
|
|
|
11
|
+
base_controller.app.add_typer(container_controller.app, name="container")
|
|
12
|
+
base_controller.app.add_typer(instance_controller.app, name="instance")
|
|
13
|
+
base_controller.app.add_typer(project_controller.app, name="project")
|
|
14
|
+
base_controller.app.add_typer(config_controller.app, name="config")
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
import thestage.config
|
|
17
|
+
base_controller.app(prog_name=__app_name__)
|
|
18
|
+
except KeyboardInterrupt:
|
|
19
|
+
print('THESTAGE: Keyboard Interrupt')
|
|
Binary file
|
|
@@ -390,7 +390,7 @@ class ProjectService(AbstractService):
|
|
|
390
390
|
)
|
|
391
391
|
if run_task_response:
|
|
392
392
|
if run_task_response.message:
|
|
393
|
-
|
|
393
|
+
print(f"[{ColorScheme.WARNING.value}]{run_task_response.message}[{ColorScheme.WARNING.value}]")
|
|
394
394
|
if run_task_response.is_success and run_task_response.task:
|
|
395
395
|
typer.echo(f"Task '{run_task_response.task.title}' has been scheduled successfully. Task ID: {run_task_response.task.id}")
|
|
396
396
|
return run_task_response.task
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: thestage
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.43
|
|
4
4
|
Summary:
|
|
5
5
|
Author: TheStage AI team
|
|
6
6
|
Author-email: hello@thestage.ai
|
|
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
14
|
Requires-Dist: aioconsole (>=0.8.0,<0.9.0)
|
|
14
15
|
Requires-Dist: boto3 (>=1.35.80,<2.0.0)
|
|
15
16
|
Requires-Dist: gitpython (>=3.1.40,<4.0.0)
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
thestage
|
|
2
|
-
thestage/__init__.py,sha256=8DQOEFc-GcQ1tUrRo3xU6B3cmSvF3Za_ORmutJb4OrY,65
|
|
1
|
+
thestage/__init__.py,sha256=2AyzlmhzrqADr8xt8n54FzyseX-iUutY-ndNo6UGbLg,65
|
|
3
2
|
thestage/__main__.py,sha256=4ObdWrDRaIASaR06IxtFSsoMu58eyL0MnD64habvPj8,101
|
|
4
|
-
thestage/color_scheme/color_scheme.py,sha256=
|
|
3
|
+
thestage/color_scheme/color_scheme.py,sha256=cL2SwCCCME2sy9n1ve6dakUFIENnFZCVQyvg6EAe3ew,115
|
|
5
4
|
thestage/config/__init__.py,sha256=RNobilYVK1WAM1utcQ8ZuATKc9Zh9M9BAjCLZTnR_TA,428
|
|
6
5
|
thestage/config/env_base.py,sha256=RNBQ17yk1ieu1kdUlM7Qe7mDCoxstgGUwwhe265o4dQ,367
|
|
7
6
|
thestage/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -42,12 +41,13 @@ thestage/helpers/logger/app_logger.py,sha256=hUuxgUsj4pl9Ogjt1xJePTf71iVxKzyx46d
|
|
|
42
41
|
thestage/helpers/ssh_util.py,sha256=JuDwddHxEGcA24Y8a-jLv339cG-jq4hEaBAl5TSVVFw,1262
|
|
43
42
|
thestage/i18n/en_GB/messages.po,sha256=BuVIhd5TRQkgFkAbTGvbSRuO88lSJGpnk9TT2J9BC8E,32375
|
|
44
43
|
thestage/i18n/translation.py,sha256=c62OicQ4phSMuqDe7hqGebIsk0W2-8ZJUfgfdtjjqEc,284
|
|
45
|
-
thestage/main.py,sha256=
|
|
44
|
+
thestage/main.py,sha256=3gHKEbOmpUTT5byvD9gPgT2uoaijAJUoa7G5dSnVlbs,784
|
|
46
45
|
thestage/services/.env,sha256=K2VpzFAVjD75XawAHZdR0HWmypryA_mXNY4WHNgR-wQ,184
|
|
47
46
|
thestage/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
47
|
thestage/services/abstract_mapper.py,sha256=_q7YLkPNRsNW5wOCqvZIu1KfpLkc7uVaAQKrMZtsGuY,218
|
|
49
48
|
thestage/services/abstract_service.py,sha256=1PBkO8pFkPmNk1VxUIxED0H3ZStCqAcFw7QGBlzkoh4,3963
|
|
50
49
|
thestage/services/app_config_service.py,sha256=a7zrbVCJx6XCSRCMv346AYQ_gV3fzw8g7EzunZJ-CIY,1655
|
|
50
|
+
thestage/services/clients/.DS_Store,sha256=EYALnKLNXhZ-2jJTMck8Fo1bIxlFCvaXGUUUf-lgHxM,6148
|
|
51
51
|
thestage/services/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
52
|
thestage/services/clients/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
thestage/services/clients/git/git_client.py,sha256=-5WSoDj0Fi6PJD_Eo04ne83Z6IGQ85qa4eVmIsLnpb4,11737
|
|
@@ -161,13 +161,13 @@ thestage/services/project/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
161
161
|
thestage/services/project/mapper/project_inference_simulator_mapper.py,sha256=UdOu9IIF5rlNPoWSaaeSKU3ODe8E5uSMgm2V5ywMWKE,812
|
|
162
162
|
thestage/services/project/mapper/project_inference_simulator_model_mapper.py,sha256=PWY0iWbXhvD-G0X0_aQZAFY2bqc0lvRJcQAyC8Y-88Q,869
|
|
163
163
|
thestage/services/project/mapper/project_task_mapper.py,sha256=SHIEXjYwt4vm2B1X2QiI4sCPbBarum0bTOnmTWPOlto,813
|
|
164
|
-
thestage/services/project/project_service.py,sha256=
|
|
164
|
+
thestage/services/project/project_service.py,sha256=KWcYzYZL56QSoYiwkresglGeDKvYSlUXlQqBjTVAQBo,50927
|
|
165
165
|
thestage/services/remote_server_service.py,sha256=3VPgd9ckxXOxXGGvb3JeJ0LwuZx2gd2jWn3Pf-CxqVk,23264
|
|
166
166
|
thestage/services/service_factory.py,sha256=tWbFFDO6TeOz5jSYbe-OabqTmsjR9Xs1OZmd49Aj3g0,5098
|
|
167
167
|
thestage/services/task/dto/task_dto.py,sha256=PJwrUsLLAoO2uA9xvzb27b9iYAoNiBcsHSxKERh2VFo,2335
|
|
168
168
|
thestage/services/validation_service.py,sha256=ABb-ok-SGITE6jm8AR1hiYHYgGZL7ri02Yi0OCXbofo,2008
|
|
169
|
-
thestage-0.5.
|
|
170
|
-
thestage-0.5.
|
|
171
|
-
thestage-0.5.
|
|
172
|
-
thestage-0.5.
|
|
173
|
-
thestage-0.5.
|
|
169
|
+
thestage-0.5.43.dist-info/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
|
|
170
|
+
thestage-0.5.43.dist-info/METADATA,sha256=rDmxq80SVJmJ-ZTPqL1TabIKTDcy7ql1t9Nll3qbP8M,5557
|
|
171
|
+
thestage-0.5.43.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
172
|
+
thestage-0.5.43.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
|
|
173
|
+
thestage-0.5.43.dist-info/RECORD,,
|
thestage/.env
DELETED
|
File without changes
|
|
File without changes
|