From e8803df32954a085aa415209b451b8925a2ee01f Mon Sep 17 00:00:00 2001 From: Mike Geppert Date: Wed, 29 Oct 2025 16:42:50 +0000 Subject: [PATCH] Rename main.py to TasmotaManager.py - Renamed main.py to TasmotaManager.py for consistency with project name - Updated pyproject.toml to reflect the new module name - All functionality remains the same --- main.py => TasmotaManager.py | 0 pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename main.py => TasmotaManager.py (100%) diff --git a/main.py b/TasmotaManager.py similarity index 100% rename from main.py rename to TasmotaManager.py diff --git a/pyproject.toml b/pyproject.toml index 55782cd..69b4dfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ dependencies = [ ] [project.scripts] -tasmota-manager = "main:main" +tasmota-manager = "TasmotaManager:main" [project.optional-dependencies] dev = [ @@ -31,7 +31,7 @@ dev = [ [tool.setuptools] py-modules = [ - "main", + "TasmotaManager", "utils", "unifi_client", "discovery",