-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 854 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (29 loc) · 854 Bytes
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
[project]
name = "gatekeeper-audit"
version = "1.3.0"
description = "LLM API security scanner — red team your AI endpoints in one command"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "AAAjczz", email = "gatekeeper@chinai.dev"}]
keywords = ["llm", "security", "red-team", "prompt-injection", "api", "openai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
]
requires-python = ">=3.10"
dependencies = [
"openai>=1.0.0",
"click>=8.0",
"pyyaml>=6.0",
"rich>=13.0",
]
[project.scripts]
gatekeeper = "gatekeeper.cli:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}