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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
[tool.poetry]
name = "terminaltables3"
version = "4.0.0"
description = "Generate simple tables in terminals from a nested list of strings. Fork of terminaltables."
authors = [
"Robpol86 <robpol86@gmail.com>",
"Matthew Martin <matthewdeanmartin@gmail.com>"
]
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 :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Topic :: Terminals",
"Topic :: Text Processing :: Markup",
]
packages = [
{ include = "terminaltables3" },
]
include = [
"terminaltables3/**/*.py",
]
exclude = [
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/matthewdeanmartin/terminaltables3"
homepage = "https://github.com/matthewdeanmartin/terminaltables3"
documentation = "https://github.com/matthewdeanmartin/terminaltables3"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/matthewdeanmartin/terminaltables3/issues"
"Change Log" = "https://github.com/matthewdeanmartin/terminaltables3/blob/master/CHANGELOG.md"
[tool.poetry.scripts]
[tool.poetry.dependencies]
# per vermin's estimation
python = ">=3.8"
[tool.poetry.dev-dependencies]
# complementary deps
colorama=">=0.3.7"
colorclass=">=2.2.0"
termcolor = "*"
# build deps
pytest = ">=8.2.1"
pytest-cov = ">=5.0.0"
vermin = ">=1.6.0"
tox = ">=4.15.0"
isort = ">=5.13.2"
bandit = ">=1.7.8"
black = ">=24.4.2"
pylint = ">=3.2.2"
ruff = ">=0.4.5"
mypy = ">=1.10.0"
pillow = ">=10.3.0"
pre-commit = ">=2"
# pytest = ">=7.4.3"
pytest-xdist =">=3.5.0"
pytest-randomly=">=3.15.0"
pytest-sugar =">=0.9.7"
# pytest-snapshot = "*"
# pytest-asyncio = "*"
pytest-network= "*"
# check-wheel-contents = "*" # requires <4
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|