Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add security policy file. closes #175. #176

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -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
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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"

Expand Down