mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
16 lines
313 B
Python
16 lines
313 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='litellm',
|
|
version='0.1.00',
|
|
description='Library to easily interface with LLM API providers',
|
|
author='Ishaan Jaffer',
|
|
packages=[
|
|
'litellm'
|
|
],
|
|
install_requires=[
|
|
'openai',
|
|
'cohere',
|
|
'os'
|
|
],
|
|
)
|