From c578e99b55f2ac721f9cbe5b6ceb856c21bec986 Mon Sep 17 00:00:00 2001 From: Andrei D Date: Sat, 30 May 2020 19:32:40 +0300 Subject: [PATCH] Add makefile with fast commands --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..617d51c --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +install: + python setup.py install + +remove: + pip uninstall python3-anticaptcha -y + +refactor: + pip install black isort + black python3_anticaptcha/ + isort -rc python3_anticaptcha/ + +upload: + pip install twine + python setup.py upload