forked from grantjenks/py-tree-sitter-languages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.26 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "textual_tree_sitter_languages"
version = "1.11.0b0"
description = "Binary Python wheels for popular tree sitter languages."
authors = [
{name = "Textualize", email = "[email protected]"},
]
requires-python = ">= 3.8"
readme = "README.rst"
license = {text = "Apache 2.0"}
dependencies = ["tree-sitter<0.22.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Documentation = "https://github.com/Textualize/py-tree-sitter-languages"
Source = "https://github.com/Textualize/py-tree-sitter-languages"
Tracker = "https://github.com/Textualize/py-tree-sitter-languages/issues"
[build-system]
requires = [
"setuptools>=74.1",
"Cython",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tree_sitter_languages"]
package-data = {"tree_sitter_languages" = ["languages.so", "languages.dll"]}
ext-modules = [
{name = "tree_sitter_languages.core", sources = ["tree_sitter_languages/core.pyx"]}
]
[tool.cython]
language_level = "3"