From 93e25163eee61d69e74671ea73c9416a3c951708 Mon Sep 17 00:00:00 2001 From: David Wales Date: Mon, 4 Nov 2024 12:19:05 +1100 Subject: [PATCH] Add metadata to pyproject.toml --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b8d390d..d990516 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,21 @@ [project] name = "az-ssh-wrapper" +authors = [ + {name = "David Wales", email = "david.wales@swsphn.com.au"} +] version = "1.0.0" description = "SSH Wrapper for Azure CLI's `az ssh` command" readme = "README.md" +license = {file = "LICENSE"} requires-python = ">=3.9" dependencies = [] +keywords = ["azure", "ssh", "ansible", "wrapper"] + +[project.urls] +Repository = "https://github.com/swsphn/az-ssh-wrapper" +"Bug Tracker" = "https://github.com/swsphn/az-ssh-wrapper/issues" + [project.scripts] az-ssh = "az_ssh_wrapper:main"