This commit is contained in:
ge
2023-06-17 20:07:50 +03:00
commit b608d88265
12 changed files with 270 additions and 0 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
all: build
build:
poetry build
clean:
[ -d dist/ ] && rm -rf dist/ || true
find . -type d -name __pycache__ -exec rm -rf {} \; > /dev/null 2>&1 || true