- Screen-Bindings lösen Actions im Screen-Namespace auf. "quit" traf daher ins Leere, weil Screen.action_quit nicht existiert – die Taste wurde still verworfen. Bindings auf "app.quit" umgestellt (q im Browser, Escape im Verbindungsdialog). - RenameScreen._ok rief do_rename() auf sich selbst statt auf den darunter liegenden BrowserScreen (AttributeError). Reihenfolge korrigiert: erst pop_screen(), dann do_rename(). - RenameScreen mit Escape abbrechbar. - Neuer Helfer _selected_entry() blendet den ".."-Navigationseintrag aus. Download, Upload, Löschen und Umbenennen operierten sonst auf "↑ ..".
29 lines
689 B
TOML
29 lines
689 B
TOML
[project]
|
|
name = "ftptui"
|
|
version = "0.3.1"
|
|
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*"]
|