Files
litellm/setup.py
T
ishaan-jaff db014f095b add pytest
2023-07-31 11:24:48 -07:00

18 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'
],
)