From c69507740f428b50ab1e6da1009203fbfea5e6f2 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Wed, 3 Apr 2024 10:28:49 -0400 Subject: [PATCH] Fix deprecated dash-separated names in setup.cfg Replace `author-email`, `home-page`, and `description-file` with `author_email`, `home_page`, and `description_file`, respectively. --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9338bba..2bdefa0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,10 @@ [metadata] name = sarif_om author = Microsoft Corporation -author-email = v-lgold@microsoft.com +author_email = v-lgold@microsoft.com summary = Classes implementing the SARIF 2.1.0 object model. -home-page = https://github.com/microsoft/sarif-python-om -description-file = README.rst +home_page = https://github.com/microsoft/sarif-python-om +description_file = README.rst license = MIT classifier = Development Status :: 5 - Production/Stable