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 61 62 63 64 65 66 67 68 69 70
|
[build-system]
requires = ["setuptools>=46.4", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TatSu"
dynamic = ["version"]
authors = [
{name = "Juancarlo AƱez", email = "apalala@gmail.com"},
]
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"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
[tool.coverage.run]
omit = [
"test/*",
"tatsu/diagrams.py",
]
|