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