summarylogtreecommitdiffstats
path: root/0001-optional-pyinstaller.patch
diff options
context:
space:
mode:
Diffstat (limited to '0001-optional-pyinstaller.patch')
-rw-r--r--0001-optional-pyinstaller.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/0001-optional-pyinstaller.patch b/0001-optional-pyinstaller.patch
deleted file mode 100644
index 93817ccd57fb..000000000000
--- a/0001-optional-pyinstaller.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 17b13ba..83340af 100755
---- a/setup.py
-+++ b/setup.py
-@@ -42,12 +42,13 @@ setuptools.setup(
- package_data={
- "": ["*.pyxres", "*.png", "*.gif", "*.dylib", "*.dll", "*.so", "*.exe"]
- },
-+ extras_require={"packager": ["pyinstaller"]},
- python_requires=">=3.6.8",
- entry_points={
- "console_scripts": [
- "pyxeleditor=pyxel.editor:run",
-- "pyxelpackager=pyxel.packager:run",
-+ "pyxelpackager=pyxel.packager:run [packager]",
- "install_pyxel_examples=pyxel.examples:install",
- ]
- },