Skip to content
Snippets Groups Projects
Commit 28b53b8d authored by Johann Jacobsohn's avatar Johann Jacobsohn
Browse files

add Makefile

parent 71cf60e0
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
flake8:
flake8 --doctest papersurfer/*.py
pylint:
pylint papersurfer/*.py
pycodestyle:
pycodestyle papersurfer/*
pydocstyle:
pydocstyle papersurfer/*
pip-prepare:
- rm -r dist
python setup.py sdist bdist_wheel
tar tzf dist/papersurfer*.tar.gz
twine check dist/*
pip-test: pip-prepare
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
pip: pip-prepare
twine upload dist/*
lint: flake8 pylint pycodestyle pydocstyle
test:
python -m pytest --doctest-modules
coverage:
python -m pytest --doctest-modules --cov=papersurfer
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment