From 8f6ea60b0f48b92ab6ddd3588f915a5f1d136b4c Mon Sep 17 00:00:00 2001 From: etorres4 Date: Thu, 17 Mar 2022 21:43:06 -0700 Subject: [PATCH] Add pug2 script to setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1193bf0..b29a5e7 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from sphinx.setup_command import BuildDoc # ========== Constants ========== EXCLUDED_PACKAGES = ["test", "tests"] PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES) -SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo"] +SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo", "bin/pug2"] CMDCLASS = {"build_sphinx": BuildDoc}