From e312269138eeccc73b8eab24cafe45698e5880a3 Mon Sep 17 00:00:00 2001 From: Maximiliano Date: Sun, 6 Oct 2024 07:20:39 +0200 Subject: [PATCH] Add metadata to pyproject (#401) * pyproject: Add pyotp dependency * pyproject: Add requires-python Together with the previous commit this allows to use uv to build the library and run test. See https://astral.sh/blog/uv-unified-python-packaging. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index dee91f33..aecc4ba7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,9 @@ authors = [ ] license = {text = "GPL-3.0"} keywords = ["vault", "keepass"] +requires-python = ">=3.7" dependencies = [ + "pyotp>=2.9.0", "setuptools; python_version<'3.8'", "construct>=2.10.53", "argon2_cffi>=18.1.0",