From 916c04196cac9b6aa5dd91bde21c7efe4f842029 Mon Sep 17 00:00:00 2001 From: wim glenn Date: Thu, 14 Dec 2023 21:46:49 -0600 Subject: [PATCH] add security policy file. closes #175. --- .github/SECURITY.md | 11 +++++++++++ pyproject.toml | 9 ++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/SECURITY.md diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 0000000..7cf5a70 --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1,11 @@ +# Security Policy + +## Reporting a Vulnerability + +Security concerns may be reported to **[wim.glenn@gmail.com](mailto:wim.glenn+parse@gmail.com)**. + +Please provide the following information in your report: + +- A description of the vulnerability and its impact +- How to reproduce the issue +- Which versions of the library are affected diff --git a/pyproject.toml b/pyproject.toml index 64613eb..cd42817 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,6 @@ build-backend = "setuptools.build_meta" name = "parse" dynamic = ["version"] readme = "README.rst" -authors = [{name = "Richard Jones", email = "richard@python.org"}] description = "parse() is the opposite of format()" license = {file = "LICENSE"} classifiers = [ @@ -18,6 +17,14 @@ classifiers = [ "License :: OSI Approved :: MIT License", ] +[[project.authors]] +name = "Richard Jones" +email = "richard@python.org" + +[[project.maintainers]] +name = "Wim Glenn" +email = "hey@wimglenn.com" + [project.urls] homepage = "https://github.com/r1chardj0n3s/parse"