tree-sitter implementation for the confindent configuration language
1[build-system]
2requires = ["setuptools>=42", "wheel"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "tree-sitter-confindent"
7description = "tree-sitter implementation for the Confindent configuration language"
8version = "0.1.0"
9keywords = ["incremental", "parsing", "tree-sitter", "confindent"]
10classifiers = [
11 "Intended Audience :: Developers",
12 "Topic :: Software Development :: Compilers",
13 "Topic :: Text Processing :: Linguistic",
14 "Typing :: Typed",
15]
16authors = [{ name = "Devon Sawatsky", email = "devon@nove.dev" }]
17requires-python = ">=3.10"
18license.text = "ISC"
19readme = "README.md"
20
21[project.urls]
22Homepage = "https://tangled.org/@nove.dev/tree-sitter-confindent"
23
24[project.optional-dependencies]
25core = ["tree-sitter~=0.24"]
26
27[tool.cibuildwheel]
28build = "cp310-*"
29build-frontend = "build"