From dd16f3f0e8c43a53c847cada3a6762fa3bc6f3e5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 16 Sep 2022 16:10:36 +0200 Subject: Merging upstream version 3.1.10 (Closes: #1014035). Signed-off-by: Daniel Baumann --- pyproject-whl.toml | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 pyproject-whl.toml (limited to 'pyproject-whl.toml') diff --git a/pyproject-whl.toml b/pyproject-whl.toml new file mode 100644 index 0000000..3c186b7 --- /dev/null +++ b/pyproject-whl.toml @@ -0,0 +1,66 @@ +[tool.poetry] +name = "terminaltables-whl" +version = "3.1.0" +description = "Generate simple tables in terminals from a nested list of strings." +authors = [ + "Matthew Martin ", + "Robpol86 ", +] +keywords = ["Shell","Bash","ANSI","ASCII","terminal","tables"] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Environment :: MacOS X", + "Environment :: Win32 (MS Windows)", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: MacOS :: MacOS X", + "Operating System :: Microsoft :: Windows", + "Operating System :: POSIX :: Linux", + "Operating System :: POSIX", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: Implementation :: PyPy", + "Topic :: Software Development :: Libraries", + "Topic :: Terminals", + "Topic :: Text Processing :: Markup", +] +packages = [ + { include = "terminaltables" }, +] +include = [ + "terminaltables/**/*.py", +] +exclude = [ +] +license = "MIT" +readme = "README.md" +repository = "https://github.com/matthewdeanmartin/terminaltables" +homepage = "https://github.com/matthewdeanmartin/terminaltables" +documentation = "https://github.com/matthewdeanmartin/terminaltables" + +[tool.poetry.urls] +"Bug Tracker" = "https://github.com/matthewdeanmartin/terminaltables/issues" +"Change Log" = "https://github.com/matthewdeanmartin/terminaltables/blob/main/docs/CHANGES.MD" + +[tool.poetry.scripts] + + +[tool.poetry.dependencies] +# per vermin's estimation +python = ">=2.6 || >=3.0" + +[tool.poetry.dev-dependencies] +pytest = "==6.0.1" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" -- cgit v1.2.3