Skip to content

Commit

Permalink
Create Justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeLollo21 authored May 4, 2023
1 parent d35e03d commit 76f659e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# list all available commands
default:
just --list

# clean all build, python, and lint files
clean:
rm -fr build
rm -fr docs/_build
rm -fr dist
rm -fr .eggs
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
rm -fr .coverage
rm -fr coverage.xml
rm -fr htmlcov
rm -fr .pytest_cache
rm -fr .mypy_cache

# install with all deps
install:
pip install -e '.[lint,test,docs,dev]'

0 comments on commit 76f659e

Please sign in to comment.