Skip to content

Commit

Permalink
[build] restore setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Oct 14, 2023
1 parent 44700a3 commit 921ff2b
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.11
Programming Language :: Python :: 3.12
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.11
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

0 comments on commit 921ff2b

Please sign in to comment.