Skip to content

Commit

Permalink
adds comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathgs committed Aug 13, 2022
1 parent 9f0b0ad commit 50368fa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,23 @@ install:
pip install --upgrade pip && pip install .

format:
echo "Format the code."
black ocrpy/

lint:
echo "Lint the code."
flake8 ocrpy/

build-package:
echo "Build the package."
hatch build

build-docs:
echo "Build the documentation."
cd docs && make clean html && cd ..

publish-package:
echo "Publish the package."
hatch publish -user=${PYPI_USERNAME} --auth=${PYPI_PASSWORD}

enforce-quality: format lint

0 comments on commit 50368fa

Please sign in to comment.