-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
32 lines (31 loc) · 1.3 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
30
31
32
from setuptools import find_packages, setup
setup(
name='openai_parallel_toolkit',
version='1.1.2',
author='Jellow',
author_email='dvdx@foxmail.com',
description='OpenAI-Parallel-Toolkit is a Python library for handling multiple OpenAI API keys and parallel '
'tasks.'
' It provides API key rotation, multithreading for faster task execution, '
'and utility functions to boost your OpenAI integration. '
'Ideal for efficient large-scale OpenAI usage.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/CZT0/OpenAI-Parallel-Toolkit',
packages=find_packages(), # Automatically find all packages
classifiers=[ # Optional
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
install_requires=[
'openai',
'colorlog',
'tqdm',
'cachetools'
],
python_requires='>=3.8',
)