litellm-mirror/setup.py
Krrish Dholakia 6ae8384fb5 updates
2023-08-03 06:57:30 -07:00

20 lines
407 B
Python

from setuptools import setup, find_packages
setup(
name='litellm',
version='0.1.222',
description='Library to easily interface with LLM API providers',
author='BerriAI',
packages=[
'litellm'
],
install_requires=[
'openai',
'cohere',
'pytest',
'anthropic',
'replicate',
'python-dotenv',
'openai[datalib]',
],
)