blob: 44270e7a0bddd1e18f031bedd2acd8bc8d93fd8b (
plain) (
blame)
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
|
[tool.poetry]
name = "tunneltop"
version = "0.4.0"
description = "A top-like tunnel manager"
authors = ["terminaldweller <devi@terminaldweller.com>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/terminaldweller/tunneltop"
repository = "https://github.com/terminaldweller/tunneltop"
keywords = ["tunnel","top","ssh"]
classifiers = [
"Environment :: Console",
]
include = [
"LICENSE",
]
packages = [
{include = "tunneltop"}
]
[tool.poetry.scripts]
tunneltop = "tunneltop.tunneltop:main"
[tool.poetry.dependencies]
python = "^3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
profile = "black"
target-version = "py311"
unfixable = ["B", "SIM", "TRY", "RUF"]
|