-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 1002 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tree-sitter-apertium"
description = "tree-sitter grammars for Apertium formats"
version = "0.2.1"
keywords = ["incremental", "parsing", "tree-sitter", "cg"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Linguistic",
]
authors = [{ name = "Daniel Swanson", email = "awesomeevildudes@gmail.com" }]
requires-python = ">=3.9"
license.text = "GPL-3.0-or-later"
readme = "README.md"
dependencies = [
"tree-sitter~=0.22",
"tree-sitter-cg",
"tree-sitter-lexc",
"tree-sitter-lexd",
"tree-sitter-rtx",
"tree-sitter-twolc",
"tree-sitter-xfst",
]
[project.urls]
Homepage = "/~https://github.com/apertium/tree-sitter-apertium"
[tool.setuptools]
packages = ['tree_sitter_apertium']