-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 737 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 737 Bytes
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
from setuptools import setup, find_packages
setup(
name="cloud",
version="0.1.0",
packages=find_packages(),
install_requires=[
"llm-foundry>=0.8.0,<0.9.0",
"openai==1.35.3",
"datasets==2.19.0",
"huggingface-hub[hf_transfer]==0.22.2",
"gradio==4.42.0",
"vllm==0.5.0.post1",
"fastapi==0.111.0"
],
author="Zack Ankner",
author_email="[email protected]",
description="Making reward models Critique-out-Loud",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/zankner/CLoud",
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
)