-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=77.0.3,<82"]
build-backend = "build_backend"
backend-path = ["."]
[project]
name = "maintainer-defense-kit"
version = "1.0.1"
description = "Offline auditor and reversible defense kit for repository governance and GitHub Actions risk"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "Thang Le"}]
keywords = ["github-actions", "governance", "maintainer", "security", "sarif"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Security",
]
[project.scripts]
maintainer-defense = "maintainer_defense_kit:main"
maintainer-defense-kit = "maintainer_defense_kit:main"
[project.urls]
Homepage = "https://github.com/thangldw/awesome-maintainer-defense"
Documentation = "https://github.com/thangldw/awesome-maintainer-defense/blob/v1.0.1/docs/AUDITOR.md"
Issues = "https://github.com/thangldw/awesome-maintainer-defense/issues"
Source = "https://github.com/thangldw/awesome-maintainer-defense"
[tool.setuptools]
py-modules = ["maintainer_defense_kit"]
package-dir = {"" = "generated"}