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"