forked from Spryngtime/openai-load-balancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name='OpenAI Load Balancer',
version='0.1.0',
packages=find_packages(),
include_package_data=True,
license='MIT',
description='The OpenAI Load Balancer is a Python library designed to distribute API requests across multiple endpoints (supports both OpenAI and Azure OpenAI). It implements a round-robin mechanism for load balancing and includes exponential backoff for retrying failed requests.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Rick Liu',
author_email='[email protected]',
url='https://github.com/Spryngtime/openai-load-balancer',
install_requires=[
# Any required packages here
'openai',
'python-dotenv',
'tenacity'
],
classifiers=[
# Full list at https://pypi.org/classifiers/
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
# Add additional supported Python versions
],
)