-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.14 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spikee"
version = "0.1.0"
description = "SPIKEE - Simple Prompt Injection Kit for Evaluation and Exploitation"
authors = [
{ name="WithSecure Consulting", email="[email protected]" }
]
license = { text = "Apache-2.0" }
keywords = ["prompt-injection", "LLM", "cyber-security", "pentesting"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"tqdm",
"six",
"toml",
"openai",
"huggingface_hub",
"langchain",
"langchain_openai",
"langchain-google_genai",
"langchain-anthropic",
"langchain-together",
"langchain-groq",
"langchain-aws",
"langchain-huggingface",
"tabulate",
"jinja2",
"pandas",
"openpyxl",
"boto3",
"azure-ai-inference",
"python-dotenv"
]
[project.scripts]
spikee = "spikee.cli:main"
[tool.setuptools.package-data]
"spikee" = ["data/**/*"]
[tool.setuptools.packages.find]
include = ["spikee*"]
exclude = ["datasets*", "results*", "targets*", "plugins*"]