Skip to content

Commit

Permalink
add make clean
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Mar 8, 2024
1 parent 1e518b8 commit a247b77
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ build:
test:
pytest tests/ --ignore=tests/integration/fork/ --ignore=tests/integration/network/

# note: for pypi upload,
# rm -r titanoboa.egg-info/ dist/
# python -m build
# twine upload dist/*
clean:
@find . -name '*.pyc' -exec rm -f {} +
@find . -name '*.pyo' -exec rm -f {} +
@find . -name '*~' -exec rm -f {} +
@find . -name '__pycache__' -exec rmdir {} +

# note: for pypi upload, see pypi-publish.sh

0 comments on commit a247b77

Please sign in to comment.