forked from wgryc/phasellm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.36 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
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
VERSION = "0.0.13"
DESCRIPTION = "Wrappers for common large language models (LLMs) with support for evaluation."
LONG_DESCRIPTION = "PhaseLLM provides wrappers for common large language models and use cases. This makes it easy to " \
"swap models in and out as needed. We also provide support for evaluation of models so you can " \
"choose which models are better to use."
setup(
name="phasellm",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author="Wojciech Gryc",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=[
"Flask>=2.0.0",
"requests>=2.24.0",
"openai>=0.26.0",
"cohere>=4.0.0",
"transformers>=4.25.0",
"accelerate>=0.16.0",
"torch>=1.0.0",
"python-dotenv",
"pandas>=2.0.0",
"openpyxl>=3.1.0",
"typing-extensions>=4.6.3",
"urllib3==1.26.6",
"sseclient-py>=1.7.2",
"docker>=6.1.3"
],
python_requires=">=3.8.0",
keywords="llm, nlp, evaluation, ai",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)