From b83d2495ebd90330fda07a62c13e59ed5c9ef9a7 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Thu, 31 Aug 2023 11:07:08 +0300 Subject: [PATCH] Remove stale dangerzone-container entrypoint The dangerzone-container entrypoint, as specified in pyproject.toml, is stale, for the following reasons: 1. It's not mentioned in the setup.py script, so it was never included in our Linux distributions. 2. The code in `dangerzone.__init__.py` that decides if it will invoke the GUI or CLI backend, just takes `dangerzone-cli` into account for this decision, and does not mention dangerzone-container anywhere. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 65d0032..f74285e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ packaging = "*" [tool.poetry.scripts] dangerzone = 'dangerzone:main' -dangerzone-container = 'dangerzone:main' dangerzone-cli = 'dangerzone:main' # Dependencies required for packaging the code on various platforms.