Initial commit

This commit is contained in:
2025-07-13 21:07:01 +02:00
commit 5b566a4529
6 changed files with 126 additions and 0 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "bw-get"
version = "0.0.1"
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",
"python-gnupg",
"typing"
]
[project.scripts]
bw-get = "bw_get.cli:app"