mirror of https://github.com/Wilfred/difftastic/
31 lines
736 B
TOML
31 lines
736 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "tree-sitter-python"
|
|
description = "Python grammar for tree-sitter"
|
|
version = "0.21.0"
|
|
keywords = ["parsing", "incremental", "python"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Topic :: Software Development :: Compilers",
|
|
"Topic :: Text Processing :: Linguistic",
|
|
]
|
|
authors = [
|
|
{name = "Max Brunsfeld"},
|
|
{name = "Amaan Qureshi"}
|
|
]
|
|
requires-python = ">=3.8"
|
|
license.text = "MIT"
|
|
readme = "README.md"
|
|
|
|
[project.optional-dependencies]
|
|
core = ["tree-sitter~=0.21"]
|
|
|
|
[tool.cibuildwheel]
|
|
build = "cp38-*"
|
|
build-frontend = "build"
|