[parser] Makefile nonsense

Includes are now explicit so they can be extracted into dependencies
for the makefile.
This commit is contained in:
John Doty 2024-10-26 12:28:48 -07:00
parent 385c378edb
commit 6692d12d36
4 changed files with 59 additions and 0 deletions

View file

@ -25,6 +25,19 @@ dev = [
"hypothesis>=6.111.1",
]
[tool.pdm.build]
includes = [
"parser/tree_sitter.py",
"parser/runtime.py",
"parser/generated_source.py",
"parser/parser.py",
"parser/emacs.py",
"parser/wadler/runtime.py",
"parser/wadler/builder.py",
"parser/wadler/__init__.py",
"parser/__init__.py",
]
[tool.pyright]
exclude = ["historical", ".venv"]
venvPath = "."