mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
24 lines
546 B
Python
24 lines
546 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='litellm',
|
|
version='0.1.235',
|
|
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'
|
|
],
|
|
)
|