Makefile 380 Bytes
Newer Older
kihoon.lee's avatar
kihoon.lee committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: init format check requirements

init:
	python -m pip install -q -U poetry ruff isort
	python -m poetry install

format:
	isort --profile black -l 119 .
	ruff format .

check:
	ruff check

requirements:
	poetry export -f requirements.txt --output requirements.txt --without-hashes
	poetry export -f requirements.txt --output requirements-dev.txt --without-hashes --with dev