-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (77 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (77 loc) · 1.95 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "intentusnet"
version = "1.5.1"
description = "IntentusNet is a deterministic execution platform for AI agents — CI-enforced reproducibility, replayable execution, and provable determinism."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Balachandar Manikandan" }
]
keywords = [
"agents",
"router",
"intent-routing",
"runtime",
"mcp",
"distributed-agents"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
# --- SECURITY ---
"cryptography>=42.0.0",
# --- TRANSPORTS ---
"websockets>=12.0",
"pyzmq>=25.1.0",
# --- OPTIONAL HTTP GATEWAY ---
"fastapi>=0.110.0",
"uvicorn>=0.29.0",
# --- UTILITIES ---
"python-dateutil>=2.9.0.post0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"mypy>=1.8.0",
"black>=24.1.1",
"ruff>=0.2.0",
]
examples = [
"requests>=2.31.0",
"aiohttp>=3.9.1"
]
[project.scripts]
intentusnet = "intentusnet.cli.main:main"
# -------------------------------------------------
# BUILD SYSTEM
# -------------------------------------------------
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
# -------------------------------------------------
# CRITICAL: src-layout configuration
# -------------------------------------------------
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["intentusnet", "intentusnet.*"]
# -------------------------------------------------
# TESTING
# -------------------------------------------------
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "strict"
# -------------------------------------------------
# TOOLING
# -------------------------------------------------
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100