-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
35 lines (32 loc) · 857 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mahilo"
version = "0.4.1"
description = " A flexible framework for creating multi-agent systems that can each interact with humans while sharing relevant context internally."
authors = [{name = "Jayesh Sharma", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"openai",
"fastapi",
"uvicorn",
"websockets",
"python-dotenv",
"pydantic",
"rich",
"langgraph==0.2.60",
"pydantic-ai==0.0.15",
]
[project.urls]
Homepage = "https://github.com/wjayesh/mahilo"
[tool.setuptools]
packages = [
"mahilo",
"mahilo.templates",
"mahilo.templates.peer2peer",
"mahilo.templates.centralized",
"mahilo.integrations.langgraph",
"mahilo.integrations.pydanticai",
]