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.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/0001-optional-pyinstaller.patch b/0001-optional-pyinstaller.patch
deleted file mode 100644
index fed4fde63d23..000000000000
--- a/0001-optional-pyinstaller.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 91b4bdb..6b45047 100644
---- a/setup.py
-+++ b/setup.py
-@@ -40,12 +40,13 @@ setuptools.setup(
- "pyxel.examples.assets",
- ],
- package_data={"": ["*.pyxres", "*.png", "*.gif", "*.dylib", "*.dll", "*.so"]},
-- install_requires=["pyinstaller"],
-+ install_requires=[],
-+ extras_require={"packager": ["pyinstaller"]},
- python_requires=">=3.7",
- entry_points={
- "console_scripts": [
- "pyxeleditor=pyxel.editor:run",
-- "pyxelpackager=pyxel.packager:run",
-+ "pyxelpackager=pyxel.packager:run [packager]",
- "install_pyxel_examples=pyxel.examples:install",
- ]
- },