Skip to content

Commit

Permalink
Create Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Cheong authored May 27, 2023
1 parent 97ee57f commit fb88272
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: docs
init:
python -m pip install --upgrade pip
python -m pip install -r ./requirements.txt --upgrade
python -m pip install build setuptools wheel flake8 --upgrade
build:
python -m build
ci:
python -m flake8 src --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
python -m flake8 src --count --select=E9,F63,F7,F82 --show-source --statistics
python setup.py install

0 comments on commit fb88272

Please sign in to comment.