List commands in main.py; stop depending on entry points.

Entry points are a major hassle to deal with during distribution and
this really isn't any worse than that.  Could probably be automated
further but I'd rather have something that works consistently.
This commit is contained in:
yrriban 2025-08-29 19:20:53 -04:00
parent 8e48915a27
commit 789064aa0d
2 changed files with 38 additions and 4 deletions

View file

@ -28,6 +28,3 @@ dcc = "dcc.main:main"
[tool.poetry-pyinstaller-plugin.scripts]
dcc = { source = "dcc/main.py", type = "onefile" }
[tool.poetry-pyinstaller-plugin.collect]
all = ["dcc"]