File size: 389 Bytes
000b4ac
 
 
 
 
 
 
 
 
 
 
d12d397
000b4ac
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
install:
	pip install -e .
	pip install -r requirements.txt

lint:
	black src tests
	flake8 src tests
	PYTHONPATH=. pylint src/ tests/
	mypy src tests

test:
	pytest tests/ -vv --cov=src/ --cov-report=term-missing

clean:
	rm -rf build/
	rm -rf dist/
	rm -rf *.egg-info
	find . -type d -name __pycache__ -exec rm -rf {} +
	find . -type f -name "*.pyc" -delete

all: install lint test clean