-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.32 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.32 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="xpander-sdk",
version="2.0.0",
author="xpanderAI",
author_email="dev@xpander.ai",
description="xpander.ai Backend-as-a-service for AI Agents - SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.xpander.ai",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"python-dotenv>=1.2.1",
"packaging>=25.0",
"pydantic>=2.12.5",
"loguru>=0.7.3",
"httpx>=0.28.1",
"httpx_sse>=0.4.3",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"nest-asyncio>=1.6.0",
"strands-agents>=1.20.0",
"openai-agents>=0.6.4",
"python-toon>=0.1.3",
],
extras_require={
"agno": ["agno==2.5.9", "sqlalchemy" ,"psycopg[binary,pool]", "greenlet"],
"dev": ["black", "pre-commit", "pytest", "anthropic", "mcp", "openai", "fireworks-ai", "aioboto3", "google-genai", "azure-ai-inference", "aiohttp"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)