-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build][dist] fix errors in migration to pyproject.toml
- Loading branch information
Showing
2 changed files
with
33 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools>=46.4", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
requires = ['setuptools>=46.4', 'wheel'] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = "TatSu" | ||
dynamic = ["version"] | ||
name = 'TatSu' | ||
dynamic = ['version'] | ||
authors = [ | ||
{name = "Juancarlo Añez", email = "[email protected]"}, | ||
{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.11" | ||
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.11' | ||
keywords = [] | ||
license = {file = "LICENSE.TXT"} | ||
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.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development :: Code Generators", | ||
"Topic :: Software Development :: Compilers", | ||
"Topic :: Software Development :: Interpreters", | ||
"Topic :: Text Processing :: General", | ||
'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', | ||
] | ||
dependencies = [] | ||
|
||
[project.optional-dependencies] | ||
colorization = ["colorama"] | ||
colorization = ['colorama'] | ||
|
||
[project.scripts] | ||
tatsu = "tatsu:main" | ||
g2e = "tatsu.g2e:main" | ||
tatsu = 'tatsu:main' | ||
g2e = 'tatsu.g2e:main' | ||
|
||
[tool.setuptools] | ||
packages = ["tatsu"] | ||
include-package-data = false | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "tatsu._version.__version__"} | ||
version = {attr = 'tatsu._version.__version__'} | ||
|
||
[tool.setuptools.packages.find] | ||
include = ['tatsu*', 'test*', 'grammar*'] |