From d6f777b6ac776105976018e62081e4804c8118ee Mon Sep 17 00:00:00 2001 From: Taro Suzuki Date: Mon, 9 Mar 2026 00:33:59 +0000 Subject: [PATCH] Add Makefile for common dev commands Co-authored-by: pokemon918 <132939190+pokemon918@users.noreply.github.com> Co-authored-by: xfactor-toml <154992305+xfactor-toml@users.noreply.github.com> Co-authored-by: omni-omega <234262665+omni-omega@users.noreply.github.com> Co-authored-by: phantomdev0826 <218786589+phantomdev0826@users.noreply.github.com> --- Makefile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fb9947e --- /dev/null +++ b/Makefile @@ -0,0 +1 @@ +install:\n\tpip install -r requirements.txt\n\nlint:\n\tflake8 . --max-line-length=120 --exclude=venv,.git,__pycache__\n\nformat:\n\tblack . --line-length 120\n\ntest:\n\tpytest tests/ -v\n\nclean:\n\tfind . -type d -name __pycache__ -exec rm -rf {} +\n\tfind . -type f -name '*.pyc' -delete \ No newline at end of file