diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-10-14 18:55:31 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-10-14 18:55:31 +0200 |
| commit | e8f200337975e9f8b8d57a5a0a3a2b25395cee88 (patch) | |
| tree | 07cfdfa9983c11f8454e0428475b95b3a5b1b02b /pyproject.toml | |
initial commit (wip)
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 23 |
1 files changed, 23 insertions, 0 deletions
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" + |