File size: 380 Bytes
19b102a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
test:
pytest
coverage:
pytest --cov
install:
python -m pip install -e .
install-test:
python -m pip install -e ".[dev]"
docs:
mkdocs serve
pypi:
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*
clean:
rm -rf **/.ipynb_checkpoints **/.pytest_cache **/__pycache__ **/**/__pycache__ .ipynb_checkpoints .pytest_cache
check: test clean
|