aboutsummaryrefslogtreecommitdiff
path: root/challenge-099/tyler-wardhaugh/python/Makefile
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2021-02-08 05:44:55 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2021-02-08 05:44:55 +0000
commit323110b0d053e2067a3cae6db62bc209f869bc57 (patch)
tree2bc39115d56abc42c203e575059292df72fabdc4 /challenge-099/tyler-wardhaugh/python/Makefile
parent7cebc2f1b3c669c7f07abcf7dccb160626dbf921 (diff)
downloadperlweeklychallenge-club-323110b0d053e2067a3cae6db62bc209f869bc57.tar.gz
perlweeklychallenge-club-323110b0d053e2067a3cae6db62bc209f869bc57.tar.bz2
perlweeklychallenge-club-323110b0d053e2067a3cae6db62bc209f869bc57.zip
- Added template for Challenge 99.
Diffstat (limited to 'challenge-099/tyler-wardhaugh/python/Makefile')
-rw-r--r--challenge-099/tyler-wardhaugh/python/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/challenge-099/tyler-wardhaugh/python/Makefile b/challenge-099/tyler-wardhaugh/python/Makefile
new file mode 100644
index 0000000000..bf7573b58a
--- /dev/null
+++ b/challenge-099/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