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:
|
2020-11-10 21:47:23 +00:00
|
|
|
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/
|
|
|
|
|
2020-11-10 21:47:23 +00:00
|
|
|
release:
|
|
|
|
pip install wheel twine
|
2020-05-30 16:32:40 +00:00
|
|
|
python setup.py upload
|