python3-anticaptcha/Makefile

20 lines
398 B
Makefile
Raw Normal View History

2020-05-30 16:32:40 +00:00
install:
python setup.py install
remove:
pip uninstall python3-anticaptcha -y
2020-05-30 17:01:34 +00:00
test:
pip install pytest coverage pytest-asyncio requests_mock
coverage run -m pytest tests -v --disable-warnings
coverage report -m python3_anticaptcha/*.py
2020-05-30 17:01:34 +00:00
2020-05-30 16:32:40 +00:00
refactor:
pip install black isort
black python3_anticaptcha/
isort -rc python3_anticaptcha/
release:
pip install wheel twine
2020-05-30 16:32:40 +00:00
python setup.py upload