From 2b4c3d04e302caf5781c5fbccc97c1d130313525 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 30 Jan 2023 16:40:00 +0330 Subject: initial commit --- pyproject.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d571a99 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[tool.poetry] +name = "tunneltop" +version = "0.1.0" +description = "A top-like tunnel manager" +authors = ["terminaldwelelr "] +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.dependencies] +python = "^3.11" + + +[tool.poetry.scripts] +tunneltop = "tunneltop:main" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" -- cgit v1.2.3