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.
This commit is contained in:
Alex Pyrgiotis 2023-08-31 11:07:08 +03:00
parent 7bc0129f94
commit b83d2495eb
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -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.