| [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"] | |