forked from agentica-project/rllm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1001 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='rllm',
version='0.0.0',
description='Distributed Post-Training RL Library for LLMs',
author='Agentica Team',
packages=find_packages(include=['rllm',]),
install_requires=[
'torch==2.4.0',
'deepspeed',
'dm-tree',
'gdown',
'google-cloud-aiplatform',
'latex2sympy2',
'pybind11',
'pylatexenc',
'pytest',
'sentence_transformers',
'sortedcontainers',
'tabulate',
'torchmetrics',
'flash-attn',
'gym',
'selenium',
'PyMuPDF',
'nltk',
'browsergym',
'gradio',
'fire',
'vertexai',
'e2b_code_interpreter',
'firecrawl',
'wandb',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
)