From f51b76ec6d09abae61131e77f263f1e922be72c3 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sun, 12 May 2024 01:10:25 -0700 Subject: [PATCH] Re-add scripts directive to setup.py --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 54f7c1d..ea46c66 100644 --- a/setup.py +++ b/setup.py @@ -2,4 +2,10 @@ import setuptools EXCLUDED_PACKAGES = ["test", "tests"] PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES) -setuptools.setup(packages=PACKAGES) +SCRIPTS = [ + "packaging_scripts/bin/addpkg", + "packaging_scripts/bin/delpkg", + "packaging_scripts/bin/fqo", + "packaging_scripts/bin/pug2", +] +setuptools.setup(scripts=SCRIPTS, packages=PACKAGES)