File size: 830 Bytes
eaae571 | 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>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "llm-prompt-injection-security-eval-framework"
version = "0.1.0"
description = "Research framework for evaluating prompt injection vulnerabilities and mitigations in LLM chatbots"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "UTS Capstone Team" }]
dependencies = [
"datasets>=2.19",
"numpy<2",
"python-dotenv>=1.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.5",
"mypy>=1.10",
]
dashboard = [
"pandas>=2.2,<3",
"streamlit>=1.44,<2",
]
app = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|