docs: add .gitignore, LICENSE, Makefile, README tutorial, example bot, pyproject.toml, and core snekbot modules

This commit is contained in:
2025-02-01 14:58:18 +00:00
commit 6654901f37
15 changed files with 441 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
PYTHON=./.venv/bin/python
PIP=./.venv/bin/pip
APP=./example.py
all: install run
install:
python3 -m venv .venv
$(PIP) install -e .
run:
$(PYTHON) $(APP)