litellm/setup.py
2023-08-05 09:15:38 -07:00

24 lines
546 B
Python

from setuptools import setup, find_packages
setup(
name='litellm',
version='0.1.234',
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'
],
)