-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "simdiff"
version = "0.3.0"
description = "The effect layer for AI-agent firewalls: simulate an action, return a canonical effect delta. Zero deps, deterministic, fail-closed."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [{ name = "simdiff contributors" }]
keywords = [
"ai-agents", "agent-security", "pre-execution", "simulation", "effect",
"firewall", "guardrails", "mcp", "llm", "tool-calling",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/MrPredic/simdiff"
Repository = "https://github.com/MrPredic/simdiff"
Issues = "https://github.com/MrPredic/simdiff/issues"
Changelog = "https://github.com/MrPredic/simdiff/blob/main/CHANGELOG.md"
[project.scripts]
simdiff = "simdiff.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/simdiff"]
[tool.pytest.ini_options]
pythonpath = ["src", "."]
testpaths = ["tests"]