working TSV and SWP and modules

This commit is contained in:
Q
2021-10-30 10:10:14 +03:00
parent e2c4b2c147
commit ecd8a10c5d
8 changed files with 83 additions and 18 deletions

25
py-packages/Makefile Normal file
View File

@@ -0,0 +1,25 @@
.PHONY: help
help: ## *:・゚✧*:・゚✧ This help *:・゚✧*:・゚✧
@printf "\033[36;1m %14s \033[0;32;1m %s\033[0m\n" Target Description
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk ' \
BEGIN {FS = ":.*?## "}; \
{ if ( $$1 != "-") { \
printf "\033[31;1;40m[ \033[36;1;40m%14s \033[31;1;40m]\033[0;32;1m %s\033[0m\n", $$1, $$2 \
} else { \
printf " \033[0;33;1m=^= %-25s =^=\033[0m\n", $$2 \
} \
} \
'
clean: ## Clean build and .egg folder in py modules
rm -vr */build/ */*.egg-info
pipx: ## Install all packages with pipx
for module in *; do if [[ -f $module/setup.py ]]; then pipx install $module; fi; done
foo:
pass