-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 1.19 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "safeagent-exec-guard"
version = "0.1.14"
description = "AI agent execution guard — prevents duplicate actions from retries with exactly-once execution, request-id dedup, and durable receipts."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "azender1" }
]
keywords = [
"ai-agents",
"idempotency",
"exactly-once",
"execution-guard",
"reliability",
"distributed-systems",
"agent-infrastructure"
]
dependencies = [
"psycopg[binary]>=3.1"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers"
]
[project.urls]
Homepage = "https://github.com/azender1/SafeAgent"
Source = "https://github.com/azender1/SafeAgent"
Issues = "https://github.com/azender1/SafeAgent/issues"
[tool.hatch.build.targets.wheel]
packages = ["safeagent_exec_guard", "settlement"]