forked from SuperagenticAI/Agenspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (50 loc) · 1.59 KB
/
setup.py
File metadata and controls
54 lines (50 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
"""Setup script for Agenspy."""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Define all dependencies directly here
install_requires = [
"dspy",
"pydantic>=2.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"websockets>=11.0",
"asyncio",
"typing-extensions",
"click>=8.0",
"pyyaml>=6.0",
]
setup(
name="agenspy",
version="0.0.1",
author="Shashi Jagtap",
author_email="shashi@super-agentic.ai",
description="Agenspy (Agentic-DSPy)- Protocol-first AI agent framework built on DSPy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/superagenticai/agenspy",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.9",
install_requires=install_requires, # Use the defined list here
extras_require={
"mcp": ["mcp>=1.0.0"],
"dev": ["pytest>=6.2.5", "black", "ruff", "mypy", "pre-commit>=3.0.0"],
"examples": ["openai>=1.0.0", "requests>=2.31.0"],
},
entry_points={
"console_scripts": [
"agenspy = agenspy.cli.main:main",
],
},
)