-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py.bak
68 lines (67 loc) · 2.21 KB
/
setup.py.bak
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
from setuptools import setup, find_packages
setup(
name="legion-ai",
version="0.1.4",
description="A flexible and provider-agnostic framework for building AI agent systems.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/LLMP-io/Legion",
author="Zain Imdad, Hayden Smith",
author_email="zain@llmp.io, hayden@llmp.io",
maintainer="Zain Imdad, Hayden Smith",
maintainer_email="zain@llmp.io, hayden@llmp.io",
license="MIT",
project_urls={
"Homepage": "https://github.com/LLMP-io/Legion",
"Bug Tracker": "https://github.com/LLMP-io/Legion/issues",
},
packages=find_packages(include=["legion", "legion.*"]),
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",
],
python_requires=">=3.11",
install_requires=[
"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",
],
extras_require={
"dev": [
"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
],
},
entry_points={
"console_scripts": [
# 'legion-cli=legion.cli:main', # Maybe add a CLI entry point
],
},
include_package_data=True,
)