litellm-mirror/setup.py
Krrish Dholakia 9d9c87db05 update setup
2023-08-01 22:29:04 -07:00

21 lines
437 B
Python

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