python3-anticaptcha/Makefile

19 lines
340 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 pytest-cov pytest-asyncio requests_mock
pytest tests --cov=python3_anticaptcha/ -v
2020-05-30 16:32:40 +00:00
refactor:
pip install black isort
black python3_anticaptcha/
isort -rc python3_anticaptcha/
upload:
pip install twine
python setup.py upload