init: 初始化

This commit is contained in:
amtoaer
2023-11-21 01:39:10 +08:00
commit 087d2d256b
7 changed files with 1507 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
.PHONY: install lint
install:
@echo "Installing dependencies..."
@poetry install --no-root
fmt:
@echo "Formatting..."
@poetry run black .
@poetry run ruff --fix .