-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 2.08 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
[project]
name = "agentveil"
version = "0.7.16"
description = "Python SDK for agent action control: posture checks, action gates, signed receipts, and proof packets"
readme = {file = "README_PYPI.md", content-type = "text/markdown"}
requires-python = ">=3.10"
license = "MIT"
authors = [{name = "Oleg Boiko", email = "ob@agentveil.dev"}]
maintainers = [{name = "Oleg Boiko", email = "ob@agentveil.dev"}]
keywords = ["ai", "agents", "agent-control", "runtime-gate", "controlled-actions", "signed-receipts", "did", "identity", "mcp", "mcp-proxy", "reputation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"httpx>=0.27.0",
"pynacl>=1.5.0",
"base58>=2.1.0",
"jcs>=0.2.1",
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://agentveil.dev"
Documentation = "https://github.com/agentveil-protocol/agentveil-sdk#readme"
Repository = "https://github.com/agentveil-protocol/agentveil-sdk"
Changelog = "https://github.com/agentveil-protocol/agentveil-sdk/releases"
Issues = "https://github.com/agentveil-protocol/agentveil-sdk/issues"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = ["pytest>=8.0.0", "pytest-asyncio>=0.23.0"]
mcp = ["mcp>=1.0.0"]
[project.scripts]
agentveil = "agentveil_paperclip.cli:agentveil_main"
agentveil-mcp = "agentveil_mcp.server:main"
agentveil-mcp-proxy = "agentveil_mcp_proxy.cli:main"
agentveil-paperclip = "agentveil_paperclip.cli:main"
[tool.setuptools.packages.find]
include = ["agentveil*", "agentveil_mcp*", "agentveil_paperclip*", "mcp_server*"]
[tool.setuptools.package-data]
agentveil_mcp = ["README.md"]
agentveil_mcp_proxy = ["README.md"]
mcp_server = ["README.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"