22 lines
865 B
Makefile
22 lines
865 B
Makefile
.PHONY: style check_code_quality
|
|
|
|
export PYTHONPATH = .
|
|
check_dirs := src
|
|
|
|
style:
|
|
black $(check_dirs)
|
|
isort --profile black $(check_dirs)
|
|
|
|
check_code_quality:
|
|
black --check $(check_dirs)
|
|
isort --check-only --profile black $(check_dirs)
|
|
# stop the build if there are Python syntax errors or undefined names
|
|
flake8 $(check_dirs) --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
# exit-zero treats all errors as warnings. E203 for black, E501 for docstring, W503 for line breaks before logical operators
|
|
flake8 $(check_dirs) --count --max-line-length=88 --exit-zero --ignore=D --extend-ignore=E203,E501,W503 --statistics
|
|
|
|
publish:
|
|
python setup.py sdist bdist_wheel
|
|
twine upload -r testpypi dist/* -u ${PYPI_USERNAME} -p ${PYPI_TEST_PASSWORD} --verbose
|
|
twine check dist/*
|
|
twine upload dist/* -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} --verbose
|