now a py package

This commit is contained in:
ishaan-jaff 2023-07-26 17:36:28 -07:00
parent e037318344
commit 2eff53e177
12 changed files with 147 additions and 0 deletions

16
setup.py Normal file
View file

@ -0,0 +1,16 @@
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'
],
)