26 lines
691 B
TOML
26 lines
691 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "tree-sitter-PARSER_NAME"
|
|
description = "CAMEL_PARSER_NAME grammar for tree-sitter"
|
|
version = "0.0.1"
|
|
keywords = ["parsing", "incremental", "PARSER_NAME"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Topic :: Software Development :: Compilers",
|
|
"Topic :: Text Processing :: Linguistic",
|
|
]
|
|
requires-python = ">=3.8"
|
|
license.file = "LICENSE"
|
|
readme = "README.md"
|
|
|
|
[project.optional-dependencies]
|
|
core = ["tree-sitter~=0.21"]
|
|
|
|
[tool.cibuildwheel]
|
|
build = "cp38-*"
|
|
build-frontend = "build"
|