from .args import parse_arguments from .env import create_environment from .template import compile_dotfiles from .stow import apply_stow_operation_to_packages import sys sys.dont_write_bytecode = True def main(): args = parse_arguments() env = create_environment(args) if args.clean: apply_stow_operation_to_packages(args.comp, args.target, "-D", env) if args.compile: compile_dotfiles(args.source, args.comp, env) if args.stow: apply_stow_operation_to_packages(args.comp, args.target, "--no-folding", env)