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
This commit is contained in:
Mike Geppert 2025-10-29 16:42:50 +00:00
parent 9c22168f79
commit e8803df329
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ dependencies = [
] ]
[project.scripts] [project.scripts]
tasmota-manager = "main:main" tasmota-manager = "TasmotaManager:main"
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
@ -31,7 +31,7 @@ dev = [
[tool.setuptools] [tool.setuptools]
py-modules = [ py-modules = [
"main", "TasmotaManager",
"utils", "utils",
"unifi_client", "unifi_client",
"discovery", "discovery",