-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 952 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 952 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
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "compliant-llm"
version = "0.1.9"
description = "Tool for testing AI system prompts against various attack vectors"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Compliant LLM Contributors", email = "example@example.com"},
]
dependencies = [
"pyyaml",
"streamlit",
"click",
"rich",
"litellm",
"python-dotenv",
"pytest",
"pytest-asyncio",
"aiofiles",
"plotly",
"psutil",
"tinydb",
"markdown",
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-exporter-otlp",
"opentelemetry-instrumentation",
"azure-monitor-opentelemetry-exporter",
"azure-core",
"azure-identity",
"azure-monitor-opentelemetry"
]
[project.scripts]
compliant-llm = "cli.main:main"
[tool.setuptools.package-data]
"core" = ["**/*.yaml"]