ftptui: FTP/SFTP TUI-Client für das Terminal

This commit is contained in:
x3
2026-08-31 14:47:24 +00:00
parent f79d190a47
commit 33827d5598
10 changed files with 1196 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
[project]
name = "ftptui"
version = "0.1.0"
description = "Interaktiver FTP/SFTP-Client als Terminal-User-Interface in Python"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["ftp", "sftp", "tui", "terminal", "client"]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"textual>=0.80.0",
"paramiko>=3.4.0",
]
[project.scripts]
ftptui = "ftptui.app:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["ftptui*"]