-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (33 loc) · 1.04 KB
/
setup.py
File metadata and controls
33 lines (33 loc) · 1.04 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
33
from distutils.core import setup
setup(
name = 'fastinference-llm',
packages=[
'fastinference',
'fastinference.data_processing',
'fastinference.managers',
'fastinference.prompt',
'fastinference.utils',
],
version = '0.0.5',
license='MIT',
description = 'Seamlessly integrate with top LLM APIs for speedy, robust, and scalable querying. Ideal for developers needing quick, reliable AI-powered responses.', # Give a short description about your library
author = 'Baptiste Lefort',
author_email = 'lefort.baptiste@icloud.com',
url = 'https://github.com/blefo/FastInference',
keywords = ['api', 'fast', 'inference', 'distributed', 'llm'],
install_requires=[
'pandas',
'numpy',
'backoff',
'openai',
'litellm',
'tqdm',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)