-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
135 lines (125 loc) · 3.96 KB
/
setup.py
File metadata and controls
135 lines (125 loc) · 3.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
from setuptools import setup, find_packages
# Read README for long description
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Minimal core dependencies - always installed
core_requirements = [
# Core utilities
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"tenacity>=8.2.0",
# Essential for agents
"numpy>=1.24.0",
# LLM Providers (must have for agents to work)
"anthropic>=0.18.0",
"openai>=1.0.0",
"groq>=0.4.0",
"together>=0.2.0",
"ollama>=0.1.0",
]
setup(
name="kite-agent",
version="0.2.1",
author="Thien Nguyen",
description="Production-Ready Agentic AI Framework with Enterprise Safety",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/thienzz/Kite",
project_urls={
"Bug Tracker": "https://github.com/thienzz/Kite/issues",
"Documentation": "https://github.com/thienzz/Kite/tree/main/docs",
"Source Code": "https://github.com/thienzz/Kite",
},
packages=find_packages(exclude=["tests", "tests.*", "examples", "examples.*"]),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.8",
install_requires=core_requirements,
extras_require={
# LLM Providers
"llm": [
"anthropic>=0.18.0",
"openai>=1.0.0",
"groq>=0.4.0",
"together>=0.2.0",
"ollama>=0.1.0",
],
# Vector memory and embeddings
"memory": [
"faiss-cpu>=1.7.4",
"chromadb>=0.4.0",
"sentence-transformers>=2.2.0",
"fastembed>=0.1.0",
"rank-bm25>=0.2.2",
"cohere>=5.0.0",
],
# Database connectors
"database": [
"psycopg2-binary>=2.9.0",
"redis>=5.0.0",
"mysql-connector-python>=8.0.0",
"motor>=3.3.0",
],
# Monitoring and API
"monitoring": [
"prometheus-client>=0.19.0",
"fastapi>=0.100.0",
"uvicorn>=0.22.0",
"python-multipart>=0.0.6",
],
# Development tools
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
],
# Install everything (for full featured experience)
"all": [
# LLM
"anthropic>=0.18.0",
"openai>=1.0.0",
"groq>=0.4.0",
"together>=0.2.0",
"ollama>=0.1.0",
# Memory
"faiss-cpu>=1.7.4",
"chromadb>=0.4.0",
"sentence-transformers>=2.2.0",
"fastembed>=0.1.0",
"rank-bm25>=0.2.2",
"cohere>=5.0.0",
# Database
"psycopg2-binary>=2.9.0",
"redis>=5.0.0",
"mysql-connector-python>=8.0.0",
"motor>=3.3.0",
# Monitoring
"prometheus-client>=0.19.0",
"fastapi>=0.100.0",
"uvicorn>=0.22.0",
"python-multipart>=0.0.6",
],
},
entry_points={
"console_scripts": [
"kite=kite.cli:main",
],
},
keywords="ai agents llm production-ready safety circuit-breaker agentic-ai",
)