aboutsummaryrefslogtreecommitdiff
path: root/challenge-096/tyler-wardhaugh/python/Makefile
diff options
context:
space:
mode:
authorTyler Wardhaugh <tyler.wardhaugh@gmail.com>2021-01-20 10:05:39 -0800
committerTyler Wardhaugh <tyler.wardhaugh@gmail.com>2021-01-20 13:21:03 -0800
commite788f447e46760cc68c99a605e1d0b0820184304 (patch)
treed6da51e83c615812aace0d9333474cce382eb649 /challenge-096/tyler-wardhaugh/python/Makefile
parentcfb51189b52bda76f0536d7674e7247b15b9f09b (diff)
downloadperlweeklychallenge-club-e788f447e46760cc68c99a605e1d0b0820184304.tar.gz
perlweeklychallenge-club-e788f447e46760cc68c99a605e1d0b0820184304.tar.bz2
perlweeklychallenge-club-e788f447e46760cc68c99a605e1d0b0820184304.zip
Ch96 (Python): Tasks 1 & 2
Diffstat (limited to 'challenge-096/tyler-wardhaugh/python/Makefile')
-rw-r--r--challenge-096/tyler-wardhaugh/python/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/challenge-096/tyler-wardhaugh/python/Makefile b/challenge-096/tyler-wardhaugh/python/Makefile
new file mode 100644
index 0000000000..bf7573b58a
--- /dev/null
+++ b/challenge-096/tyler-wardhaugh/python/Makefile
@@ -0,0 +1,13 @@
+.PHONEY: help
+help:
+ @grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
+ sort | \
+ awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
+
+.PHONEY: test
+test: ## run the test suite
+ @python -m unittest
+
+.PHONEY: satisfy-reqs
+satisfy-reqs: ## ensure the requirements are installed
+ @python -m pip install -r requirements.txt