-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 691 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 691 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opensurity"
version = "0.1.0"
description = "The connective tissue layer for AI agent networks"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
dependencies = [
"typer>=0.12",
"jsonschema>=4.22",
"cryptography>=46.0.7",
"base58>=2.1.1",
]
[project.optional-dependencies]
langgraph = ["langgraph>=0.2"]
crewai = ["crewai>=0.80"]
autogen = ["autogen-agentchat>=0.4"]
ipfs = ["httpx>=0.27"]
all = ["opensurity[langgraph,crewai,autogen,ipfs]"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "ruff>=0.4", "mypy>=1.9"]
[project.scripts]
opensurity = "opensurity.cli.main:app"