-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (45 loc) · 1.49 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
"""Setup for local-llm-router."""
from setuptools import setup, find_packages
setup(
name="local-llm-router",
version="1.0.0",
description="Route prompts between local and cloud LLMs based on task complexity",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="XidaoApi",
url="https://github.com/XidaoApi/local-llm-router",
license="MIT",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"httpx>=0.25",
"pyyaml>=6.0",
],
extras_require={
"server": ["fastapi>=0.100", "uvicorn>=0.20"],
"cloud": [], # httpx covers it
"classifier": ["scikit-learn>=1.3"],
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx>=0.25",
],
},
entry_points={
"console_scripts": [
"llm-router=local_llm_router.cli:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords=["llm", "ai", "routing", "local", "ollama", "openai", "cost-optimization"],
)