From e8f200337975e9f8b8d57a5a0a3a2b25395cee88 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Tue, 14 Oct 2025 18:55:31 +0200 Subject: initial commit (wip) --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..dc3486a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "nm-pass" +description = "NetworkManager secret agent that reads/writes secrets to password-store" +version = "0.0.1" +authors = [ + { name="Loek Le Blansch", email="loek@pipeframe.xyz" }, +] +readme = "readme.md" +requires-python = ">=3.9" +license = "MIT" +license-files = ["license"] +dependencies = [ + "sdbus", + "sdbus-networkmanager", +] + +[project.scripts] +nmpassd = "nmpass.main:main" + -- cgit v1.2.3