-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.75 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
62
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentshield"
version = "0.1.0"
description = "Security audit framework for agentic AI systems with STRIDE threat modeling, attack simulation, and detection pipeline"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "JangKeun Kim", email = "jak4013@med.cornell.edu"}]
keywords = [
"ai-safety", "prompt-injection", "agentic-ai", "security-audit",
"stride", "threat-modeling", "multi-agent", "content-moderation",
"red-teaming", "llm-security",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
]
dependencies = [
"pydantic>=2.0,<3.0",
"anthropic>=0.25",
"transformers>=4.40",
"torch>=2.2",
"numpy>=1.26",
"scipy>=1.10",
"matplotlib>=3.8",
"seaborn>=0.13",
"tqdm>=4.66",
]
[project.urls]
Homepage = "https://github.com/jang1563/agentshield"
Repository = "https://github.com/jang1563/agentshield"
Issues = "https://github.com/jang1563/agentshield/issues"
[project.optional-dependencies]
bioguard = ["constitutional-bioguard"]
dev = ["pytest>=8.0", "ruff>=0.4"]
[tool.setuptools.packages.find]
include = ["agentshield*"]
[tool.uv.sources]
constitutional-bioguard = { path = "../constitutional_bioguard" }
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]