forked from CZT0/OpenAI-Parallel-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 1.2 KB
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 setup, find_packages
setup(
name='openai_parallel_toolkit',
version='0.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',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'openai',
'colorlog',
'tqdm',
'tiktoken',
'py'
]
)