forked from acheong08/OpenAIAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Antonio Cheong
authored
May 27, 2023
1 parent
97ee57f
commit fb88272
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |