litellm-mirror/setup.py
2023-08-03 12:00:24 -07:00

24 lines
546 B
Python

from setuptools import setup, find_packages
setup(
name='litellm',
version='0.1.227',
description='Library to easily interface with LLM API providers',
author='BerriAI',
packages=[
'litellm'
],
package_data={
"litellm": ["integrations/*"], # Specify the directory path relative to your package
},
install_requires=[
'openai',
'cohere',
'pytest',
'anthropic',
'replicate',
'python-dotenv',
'openai[datalib]',
'tenacity'
],
)