bw-menu/pyproject.toml
Navid Sassan 5eb53d8b06 Move rofi keybindings from CLI flags to config file
Replace --custom-field, --kb-accept, and --kb-custom CLI flags with a
YAML config file at $XDG_CONFIG_HOME/bw-menu/config.yaml. The config
maps rofi key names to vault fields (e.g. Return: password), making
keybinding configuration simpler and more intuitive.
2026-02-17 20:16:12 +01:00

13 lines
226 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bw-menu"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = ["pyyaml"]
[project.scripts]
bw-menu = "bw_menu.__main__:main"