File: pyproject.toml

package info (click to toggle)
toolong 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 228 kB
  • sloc: python: 2,397; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (2)
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
[tool.poetry]
name = "toolong"
version = "1.5.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.58.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"