2024-05-09 19:40:48 -07:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
EXCLUDED_PACKAGES = ["test", "tests"]
|
|
|
|
PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES)
|
2024-05-12 01:10:25 -07:00
|
|
|
SCRIPTS = [
|
|
|
|
"packaging_scripts/bin/addpkg",
|
|
|
|
"packaging_scripts/bin/delpkg",
|
|
|
|
"packaging_scripts/bin/fqo",
|
|
|
|
"packaging_scripts/bin/pug2",
|
|
|
|
]
|
|
|
|
setuptools.setup(scripts=SCRIPTS, packages=PACKAGES)
|