forked from MervinPraison/PraisonAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 965 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
36
37
[tool.poetry]
name = "praisonAI"
version = "0.0.17"
description = "praisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration."
authors = ["Mervin Praison"]
license = ""
readme = "README.md"
[tool.poetry.urls]
Homepage = "https://github.com/mervinpraison/praisonAI"
Repository = "https://github.com/mervinpraison/praisonAI"
[tool.setuptools]
packages = ["praisonAI"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
rich = ">=13.7"
pyautogen = ">=0.2.19"
crewai = ">=0.22.5"
gradio = ">=4.20.0"
Flask = ">=3.0.0"
markdown = ">=3.5"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pre-commit = "^3.6"
[tool.poetry.extras]
tools = ["crewai-tools"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
praisonai = "praisonai.__main__:main"