-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (55 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fas-judgement"
version = "3.1.1"
description = "Open-source prompt injection attack console - Test AI systems for prompt injection vulnerabilities"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Fallen Angel Systems", email = "contact@fallenangelsystems.com"}
]
keywords = ["security", "prompt-injection", "ai-security", "penetration-testing", "llm", "red-team"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"httpx>=0.24.0",
"aiosqlite>=0.19.0",
"sse-starlette>=1.6.0",
"pydantic>=2.0.0",
"slowapi>=0.1.9",
]
[project.optional-dependencies]
pdf = ["weasyprint>=60.0"]
[project.urls]
Homepage = "https://github.com/fallen-angel-systems/fas-judgement-oss"
Documentation = "https://github.com/fallen-angel-systems/fas-judgement-oss#readme"
Repository = "https://github.com/fallen-angel-systems/fas-judgement-oss"
"Bug Tracker" = "https://github.com/fallen-angel-systems/fas-judgement-oss/issues"
"Hosted Version" = "https://judgement.fallenangelsystems.com"
[project.scripts]
judgement = "fas_judgement.__main__:main"
[tool.setuptools.packages.find]
include = ["fas_judgement*"]
[tool.setuptools.package-data]
fas_judgement = [
"ui/static/*",
"ui/static/audio/*.mp3",
"ui/static/audio/taunts/*.mp3",
"modules/ai_security/patterns/data/single-shot/*.json",
"modules/ai_security/patterns/data/multi-turn/*.json",
]