Files
bw_get/pyproject.toml
Fabian van Koppen ef2fdac599 Bump version to 1.1.0 and enhance TOTP handling
- Updated project version from 1.0.1 to 1.1.0 in pyproject.toml.
- Added `parse_totp` function for improved TOTP parsing and error handling.
- Refined item filtering to include only items of type 1 (logins).
- Enhanced username display logic in item selection.
2025-07-13 23:59:48 +02:00

27 lines
504 B
TOML

[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "bw-get"
version = "1.1.0"
authors = [
{name="Fabian van Koppen", email="f@bianvk.nl"}
]
description = "Wrapper script voor de Bitwarden CLI"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"questionary",
"pyotp",
"pyperclip",
"typer",
]
[project.scripts]
bw-get = "bw_get.cli:app"