1
0
Fork 0

Adding upstream version 1.4.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-16 09:20:44 +02:00
parent cef31edaff
commit 1933d2d9f9
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
24 changed files with 4114 additions and 0 deletions

28
pyproject.toml Normal file
View file

@ -0,0 +1,28 @@
[tool.poetry]
name = "toolong"
version = "1.4.0"
description = "A terminal log file viewer / tailer / analyzer"
authors = ["Will McGugan <will@textualize.io>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/textualize/toolong"
repository = "https://github.com/textualize/toolong"
documentation = "https://github.com/textualize/toolong"
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.7"
textual = "^0.52.0"
typing-extensions = "^4.9.0"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.4.0"
[tool.poetry.scripts]
tl = "toolong.cli:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"