Skip to content

Commit 48e0258

Browse files
authored
Add a JSON to seek funding from the FLOSS/fund (#1194)
The FLOSS/fund is running a program to invest support in critical, impactful, and valuable open source projects. Adding this file doesn't guarantee funding, but raises awareness Bandit is seeking it. The JSON has been validated using their online validation tool: https://dir.floss.fund/validate More info: https://floss.fund/blog/announcing-floss-fund/ Signed-off-by: Eric Brown <[email protected]>
1 parent 5300a21 commit 48e0258

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

funding.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"version": "v1.0.0",
3+
"entity": {
4+
"type": "individual",
5+
"role": "maintainer",
6+
"name": "Eric Brown",
7+
"email": "[email protected]",
8+
"phone": "",
9+
"description": "I’m passionate about developing tools that empower engineers to produce secure, hardened code, reducing vulnerabilities and strengthening software integrity. With a focus on security automation, I aim to make secure coding practices more accessible and integrated into development workflows.",
10+
"webpageUrl": {
11+
"url": "https://github.com"
12+
}
13+
},
14+
"projects": [{
15+
"guid": "bandit",
16+
"name": "Bandit",
17+
"description": " Bandit is a tool designed to find common security issues in Python code.",
18+
"webpageUrl": {
19+
"url": "https://github.com/PyCQA/bandit"
20+
},
21+
"repositoryUrl": {
22+
"url": "https://github.com/PyCQA/bandit"
23+
},
24+
"licenses": ["spdx:Apache-2.0"],
25+
"tags": ["python", "static-code-analysis", "security", "security-tools"]
26+
}],
27+
"funding": {
28+
"channels": [
29+
{
30+
"guid": "github",
31+
"type": "payment-provider",
32+
"address": "https://github.com/sponsors/ericwb",
33+
"description": "Pay with your credit card through this gateway and setup recurring subscriptions."
34+
},
35+
{
36+
"guid": "psf",
37+
"type": "payment-provider",
38+
"address": "https://psfmember.org/civicrm/contribute/transact/?reset=1&id=42",
39+
"description": "Pay with your credit card through this gateway and setup recurring subscriptions."
40+
}
41+
],
42+
"plans": [
43+
{
44+
"guid": "developer-time",
45+
"status": "active",
46+
"name": "Developer compensation",
47+
"description": "This will cover the cost of one developer working part-time on the projects.",
48+
"amount": 1000,
49+
"currency": "USD",
50+
"frequency": "monthly",
51+
"channels": ["github", "psf"]
52+
},
53+
{
54+
"guid": "angel-plan",
55+
"status": "active",
56+
"name": "Goodwill plan",
57+
"description": "Pay anything you wish to show your goodwill for the project.",
58+
"amount": 0,
59+
"currency": "USD",
60+
"frequency": "one-time",
61+
"channels": ["psf"]
62+
}
63+
]
64+
}
65+
}

0 commit comments

Comments
 (0)