forked from agent-network-protocol/anp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.44 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
[tool.poetry]
name = "agent-connect"
version = "0.3.6"
description = "An SDK that enables agents to connect with each other, allowing them to perform identity authentication, end-to-end encrypted communication, automatic protocol negotiation based on LLMs, and efficient data exchange."
authors = ["changshan <chgaowei@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "agent_connect"}]
repository = "https://github.com/agent-network-protocol/AgentConnect"
homepage = "https://agent-network-protocol.com/"
documentation = "https://github.com/agent-network-protocol/AgentNetworkProtocol"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.8"
ecdsa = "^0.19.0"
cryptography = "^43.0.3"
asn1crypto = "^1.5.1"
base58 = "^2.1.1"
aiohttp = "^3.10.10"
requests = "^2.32.3"
websockets = "^13.1"
pydantic = ">=2.9.2,<3.0.0"
python-dotenv = "^1.0.1"
jsonschema = "^4.23.0"
canonicaljson = "^2.0.0"
jcs = "^0.2.1"
pyjwt = "^2.9.0"
[tool.poetry.group.api.dependencies]
openai = { version = ">=1.54.3", optional = true }
fastapi = { version = ">=0.115.4,<1.0.0", optional = true }
uvicorn = { version = ">=0.32.0,<1.0.0", optional = true }
[tool.poetry.extras]
api = ["openai", "fastapi", "uvicorn"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
in-project = true