29 lines
689 B
TOML
29 lines
689 B
TOML
[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*"]
|