-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.76 KB
/
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
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
[tool.poetry]
name = "legion-ai"
version = "0.1.5"
description = "Legion is a flexible and provider-agnostic framework designed to simplify the creation of sophisticated multi-agent systems"
authors = [
"Zain Imdad, Hayden Smith <zain@llmp.io, hayden@llmp.io>",
]
license = "MIT" # Change from LICENSE to MIT
readme = "README.md"
homepage = "https://github.com/LLMP-io/Legion"
repository = "https://github.com/LLMP-io/Legion"
keywords = ["ai", "agents", "multi-agent", "llm"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
packages = [{ include = "legion" }]
[tool.poe.tasks]
test = "pytest -v"
typecheck = "python scripts/typecheck.py"
security = "python scripts/security.py"
[tool.poetry.dependencies]
python = "^3.11"
annotated-types = "0.6.0"
anthropic = "0.30.1"
asyncio = "3.4.3"
bandit = "1.7.8"
colorama = "0.4.6"
flake8 = "7.0.0"
flake8-docstrings = "1.7.0"
flake8-import-order = "0.18.2"
flake8-quotes = "3.4.0"
google-genai = "0.3.0"
google-generativeai = "0.8.2"
groq = "0.4.2"
huggingface-hub = "0.26.3"
mypy = "1.9.0"
ollama = "0.4.2"
openai = "1.55.0"
psutil = "5.9.8"
pydantic = "2.10.2"
python-dotenv = "1.0.1"
ruff = "0.3.0"
safety = "2.3.5"
types-setuptools = "69.2.0.20240317"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "4.0.1"
pytest = "8.2.2"
pytest-asyncio = "0.23.6"
# poethepoet = "^0.32.1" # Uncomment if you want to use the `poethepoet` tool
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"