forked from neogeny/TatSu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (41 loc) · 1.26 KB
/
setup.cfg
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
[metadata]
name = TatSu
version = attr: tatsu.__version__
author = Juancarlo Añez
author_email = [email protected]
maintainer = Juancarlo Añez
maintainer_email = [email protected]
license = BSD-3-Clause-Attribution
description = TatSu takes a grammar in a variation of EBNF as input, and outputs a memoizing PEG/Packrat parser in Python.
url = https://github.com/neogeny/tatsu
long_description = file: README.rst
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
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Compilers
Topic :: Software Development :: Interpreters
Topic :: Text Processing :: General
[options]
packages = find:
zip_safe = False
include_package_data = True
python_requires = >=3.10
tests_require = pytest-mypy
[options.entry_points]
console_scripts =
tatsu = tatsu:main
g2e = tatsu.g2e:main
[options.extras_require]
future-regex = regex
[bdist_wheel]
universal = 1
[aliases]
test = pytest