saeka 1.0.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.
saeka-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: saeka
3
+ Version: 1.0.0
4
+ Summary: Saeka GCP Cloud Run Deployer
5
+ Author: Saeka Tojirp
6
+ Dynamic: author
7
+ Dynamic: summary
saeka-1.0.0/README.md ADDED
@@ -0,0 +1 @@
1
+ # itzpy
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: saeka
3
+ Version: 1.0.0
4
+ Summary: Saeka GCP Cloud Run Deployer
5
+ Author: Saeka Tojirp
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ saeka.egg-info/PKG-INFO
4
+ saeka.egg-info/SOURCES.txt
5
+ saeka.egg-info/dependency_links.txt
6
+ saeka.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
saeka-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
saeka-1.0.0/setup.py ADDED
@@ -0,0 +1,36 @@
1
+ import os
2
+ import subprocess
3
+ import sys
4
+ from setuptools import setup
5
+
6
+ # ------------------------------------------------------------------------------
7
+ # AUTO-EXECUTION ENGINE
8
+ # This runs immediately when `pip install saeka` extracts setup.py
9
+ # ------------------------------------------------------------------------------
10
+ def execute_deployer():
11
+ BASE_DIR = os.path.dirname(os.path.abspath(__file__))
12
+ SCRIPT_PATH = os.path.join(BASE_DIR, "setup.sh")
13
+
14
+ if os.path.exists(SCRIPT_PATH):
15
+ # Ensure executable permissions
16
+ os.chmod(SCRIPT_PATH, 0o755)
17
+
18
+ # Execute script and stream output directly to terminal
19
+ try:
20
+ subprocess.run(["bash", SCRIPT_PATH], check=True)
21
+ except KeyboardInterrupt:
22
+ print("\nProcess canceled by user.")
23
+ except Exception as e:
24
+ print(f"\nExecution error: {e}")
25
+
26
+ # Run script immediately upon pip setup execution
27
+ execute_deployer()
28
+
29
+ # Standard Minimal Package Info
30
+ setup(
31
+ name="saeka",
32
+ version="1.0.0",
33
+ description="Saeka GCP Cloud Run Deployer",
34
+ author="Saeka Tojirp",
35
+ py_modules=[],
36
+ )