blob: 851b3cb53301701138c51ed21c9eba75f843737b (
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
|
[tool.poetry]
name = "tunneltop"
version = "0.1.0"
description = "A top-like tunnel manager"
authors = ["terminaldwelelr <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:main"
[tool.poetry.dependencies]
python = "^3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|