mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
17 lines
333 B
Python
17 lines
333 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='litellm',
|
|
version='0.1.2',
|
|
description='Library to easily interface with LLM API providers',
|
|
author='BerriAI',
|
|
packages=[
|
|
'litellm'
|
|
],
|
|
install_requires=[
|
|
'openai',
|
|
'cohere',
|
|
'func_timeout'
|
|
'pytest'
|
|
],
|
|
)
|