19da69b3e8
Working base grammar, visitor, client, context. Good test coverage for grammar constructs.
22 lines
304 B
TOML
22 lines
304 B
TOML
[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 = ["."]
|