Skip to content

Commit 9c3b1c2

Browse files
committed
build: add Makefile for convenience [skip ci]
1 parent 99dd028 commit 9c3b1c2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This makefile is used to make it easier to get the project set up
2+
# to be ready for development work in the local sandbox.
3+
# example: "make setup"
4+
5+
setup: deps dev_deps install_project
6+
7+
deps:
8+
python -m pip install -r requirements.txt
9+
10+
dev_deps:
11+
python -m pip install -r requirements-dev.txt
12+
13+
install_project:
14+
python -m pip install -e .
15+
16+
test-unit:
17+
python -m pytest test
18+
19+
lint:
20+
./pylint.sh

0 commit comments

Comments
 (0)