Initial Commit

Working base grammar, visitor, client, context.
Good test coverage for grammar constructs.
This commit is contained in:
2026-05-30 04:57:04 +10:00
commit 19da69b3e8
11 changed files with 917 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "custom-commands"
version = "0.1a"
dependencies = [
"parsimonious",
"regex",
]
requires-python = ">=3.13"
[project.optional-dependencies]
testing = [
"pytest",
"pytest-asyncio"
]
[pytest]
asyncio_debug = true
asyncio_mode = "auto"
[tool.pytest.ini_options]
pythonpath = ["."]