From e5bd9944ac9682a7b739b6ad17edd2d2cb4e10b8 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Mon, 20 Feb 2023 23:24:53 -0800 Subject: [PATCH] [RELEASE] Create executable via pyinstaller --- Makefile | 2 ++ setup.cfg | 1 + 2 files changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3f7d1eaf..0c3e7b83 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,8 @@ docker_stage: wheel cp -R examples docker/root/defaults/ docker: docker_stage sudo docker build --no-cache -t ytdl-sub:local docker/ +executable: clean + pyinstaller ytdl-sub.spec docs: sphinx-build -a -b html docs docs/_html clean: diff --git a/setup.cfg b/setup.cfg index ecfc8602..e5ed64a0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -53,4 +53,5 @@ docs = build = build twine + pyinstaller