From 70c26649d51ab70615cf35143a0b99b409f6729d Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Thu, 5 Feb 2026 01:51:17 +0100 Subject: [PATCH] chore: init --- README.md | 3 +++ pyproject.toml | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 README.md create mode 100644 pyproject.toml diff --git a/README.md b/README.md new file mode 100644 index 0000000..d7a64f7 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# pebble + +A small interpreted language, easy to embed or use for light automation/modding, while teaching me how languages work internally diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9e4d84d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[project] +name = "pebble" +version = "0.1.0" +description = "Add your description here" +requires-python = ">=3.13" +dependencies = []