CoolFace
Apppublic

aravagarwal/CodeCloakPII

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
pyproject.toml27 linesDownload Raw Back to tree-sitter-python
1[build-system]2requires = ["setuptools>=42", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "tree-sitter-python"7description = "Python grammar for tree-sitter"8version = "0.0.1"9keywords = ["parsing", "incremental", "python"]10classifiers = [11  "Development Status :: 4 - Beta",12  "Intended Audience :: Developers",13  "License :: OSI Approved :: MIT License",14  "Topic :: Software Development :: Compilers",15  "Topic :: Text Processing :: Linguistic",16]17requires-python = ">=3.8"18license.file = "LICENSE"19readme = "README.md"20 21[project.optional-dependencies]22core = ["tree-sitter~=0.21"]23 24[tool.cibuildwheel]25build = "cp38-*"26build-frontend = "build"27