Re-add scripts directive to setup.py

This commit is contained in:
Eric Torres 2024-05-12 01:10:25 -07:00
parent 418b304b12
commit f51b76ec6d

View File

@ -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)