appendfilename/pyproject.toml
Karl Voit 2993ab9443 Fix TAB completion under libedit (uv/python-build-standalone)
TAB completion silently failed on interpreters linked against libedit
instead of GNU readline (e.g. the uv-managed python-build-standalone
interpreters now common on Debian/KDE setups). libedit ignores the GNU
readline binding 'tab: complete', so pressing TAB merely inserted a
literal tab character.

Detect the libedit backend via readline.__doc__ and emit the
libedit-specific binding 'bind ^I rl_complete' instead, keeping
'tab: complete' for genuine GNU readline.

Bump version to 2026.06.06.1.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-06 23:00:44 +02:00

54 lines
1.2 KiB
TOML

[project]
name = "appendfilename"
version = "2026.06.06.1"
description = "Intelligent appending text to file names, considering file extensions and file tags"
license = "GPL-3.0-or-later"
readme = { file = "README.org", content-type = "text/plain" }
authors = [
{ name = "Karl Voit", email = "tools@Karl-Voit.at" },
]
keywords = [
"file managing",
"file management",
"files",
"name",
"time",
"time-stamps"
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent"
]
dependencies = [
"pyreadline3>=3.5.4",
]
[project.urls]
Homepage = "https://github.com/novoid/appendfilename"
[project.scripts]
appendfilename = "appendfilename:main"
[[tool.uv.index]]
name = "appendfilename"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.setuptools.packages.find]
include = ["appendfilename*"]
[build-system]
requires = ["setuptools>=78.1.0", "wheel>=0.45.1"]
build-backend = "setuptools.build_meta"
[tool.mypy]
strict = true
ignore_missing_imports = true