-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=46.4", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TatSu"
dynamic = ["version"]
authors = [
{name = "Juancarlo Añez", email = "[email protected]"},
]
description = "TatSu takes a grammar in a variation of EBNF as input, and outputs a memoizing PEG/Packrat parser in Python."
readme = "README.rst"
requires-python = ">=3.10"
keywords = []
license = {file = "LICENSE.TXT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Topic :: Text Processing :: General",
]
dependencies = []
[project.optional-dependencies]
colorization = ["colorama"]
parproc = ["rich"]
[project.scripts]
tatsu = "tatsu:main"
g2e = "tatsu.g2e:main"
[project.urls]
Homepage = "https://github.com/neogeny/TatSu"
Repository = "https://github.com/neogeny/TatSu"
Documentation = "https://tatsu.readthedocs.io/en/stable/"
Questions = "https://stackoverflow.com/questions/tagged/tatsu"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "tatsu._version.__version__"}
[tool.setuptools.packages.find]
include = ["tatsu*"]
[tool.blue]
target-version = ["py310"]
line-length=79
skip-magic-trailing-comma=true