diff --git a/pyproject.toml b/pyproject.toml index e7dfe5bd4..e20553b5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.238" +version = "0.1.3" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License" diff --git a/setup.py b/setup.py deleted file mode 100644 index 9f54d6452..000000000 --- a/setup.py +++ /dev/null @@ -1,24 +0,0 @@ -from setuptools import setup, find_packages - -setup( - name='litellm', - version='0.1.231', - 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' - ], -)