-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.97 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
[build-system]
requires = ["scikit-build-core>=0.8", "pybind11>=2.12"]
build-backend = "scikit_build_core.build"
[project]
name = "agentguard-ai"
version = "1.0.0"
description = "Deadlock prevention for multi-AI-agent systems using the Banker's Algorithm. C++ core, Python bindings, LangGraph integration."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = []
authors = [
{name = "Saurabh Kumar"},
]
keywords = [
"deadlock", "deadlock-prevention", "bankers-algorithm",
"multi-agent", "ai-agents", "langgraph", "langchain",
"resource-management", "concurrency", "rate-limiting",
"llm", "agent-framework", "tool-calling",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: C++",
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
]
[project.urls]
Homepage = "https://github.com/100rabhkr/AgentGuard"
Repository = "https://github.com/100rabhkr/AgentGuard"
"Bug Tracker" = "https://github.com/100rabhkr/AgentGuard/issues"
[project.optional-dependencies]
langgraph = ["langgraph>=0.2", "langchain-core>=0.2"]
dev = ["pytest", "pytest-timeout"]
all = ["langgraph>=0.2", "langchain-core>=0.2", "pytest", "pytest-timeout"]
[tool.scikit-build]
cmake.args = ["-DAGENTGUARD_BUILD_PYTHON=ON", "-DAGENTGUARD_BUILD_TESTS=OFF", "-DAGENTGUARD_BUILD_EXAMPLES=OFF"]
wheel.packages = ["python/agentguard"]
[tool.pytest.ini_options]
testpaths = ["python/tests"]