diff --git a/build_agent.py b/build_agent.py index 4ffd7aa..6258e4c 100755 --- a/build_agent.py +++ b/build_agent.py @@ -16,8 +16,8 @@ import shutil import uuid import platform from zeroconf_server import ZeroconfServer -from version import APP_VERSION, APP_NAME +APP_NAME = "cross-py-builder" build_agent_version = "0.1.33" app = Flask(__name__) @@ -354,7 +354,7 @@ def delete_cache(): if __name__ == "__main__": - print(f"===== {APP_NAME} {APP_VERSION} Build Agent (v{build_agent_version}) =====") + print(f"===== {APP_NAME} Build Agent (v{build_agent_version}) =====") ZeroconfServer.configure("_crosspybuilder._tcp.local.", socket.gethostname(), 9001) try: ZeroconfServer.start() diff --git a/version.py b/version.py deleted file mode 100644 index 267029d..0000000 --- a/version.py +++ /dev/null @@ -1,2 +0,0 @@ -APP_NAME = "cross-py-builder" -APP_VERSION = "1.0.0" \ No newline at end of file