From 19550cbdd331104efb5863f93720eae5c4a860bb Mon Sep 17 00:00:00 2001 From: Roman Lutz Date: Thu, 11 Jan 2024 19:30:14 +0530 Subject: [PATCH 1/2] add poetry attributes --- pyproject.toml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3f0cf04ca3..e2bd5cc286 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "pyrit" version = "0.1.0" -description = "" +description = "The Python Risk Identification Tool for LLMs (PyRIT) is a library used to assess the robustness of LLMs" authors = [ "Gary ", "Amanda ", @@ -16,6 +16,28 @@ readme = "README.md" packages = [ { include = "pyrit", from = "." }, ] +license = "MIT" +repository = "https://github.com/Azure/PyRIT" +documentation = "https://github.com/Azure/PyRIT/wiki" +keywords = [ + "llm", + "ai-security", + "ai-red-team", + "ai-robustness", + "ai-robustness-testing", + "ai-risk-assessment" +] +classifiers = [ + "Development Status :: 3 - Alpha", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.10", + "Topic :: Software Development :: Build Tools", + "Topic :: Software Development :: Libraries :: Python Modules" +] + +[tool.poetry.urls] +"Issue Tracker" = "https://github.com/Azure/PyRIT/issues" +"Wiki" = "https://github.com/Azure/PyRIT/wiki" [tool.poetry.dependencies] python = ">=3.10, <3.11" From bc98032e495808e0afb275e0fb3fc360209d990c Mon Sep 17 00:00:00 2001 From: Roman Lutz Date: Thu, 11 Jan 2024 19:33:27 +0530 Subject: [PATCH 2/2] remove default classifiers --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e2bd5cc286..fa041f2e5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,8 +31,6 @@ classifiers = [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.10", - "Topic :: Software Development :: Build Tools", - "Topic :: Software Development :: Libraries :: Python Modules" ] [tool.poetry.urls]