-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (63 loc) · 1.89 KB
/
setup.py
File metadata and controls
65 lines (63 loc) · 1.89 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="LightRFT",
version="0.1.1",
author="LightRFT Team",
author_email="opendilab@pjlab.org.cn",
description="LightRFT: Light, Efficient, Omni-modal & Reward-model Driven Reinforcement Fine-Tuning Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/opendilab/LightRFT",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.12",
extras_require={
"dev": [
"pytest",
"black",
"pylint",
],
"docs": [
"sphinx",
"sphinx-rtd-theme",
],
"eval": [
"latex2sympy2",
"timeout_decorator",
"word2number",
],
# Optional vLLM backend support
# Install with: pip install "LightRFT[vllm]"
"vllm": [
"vllm>=0.13.3",
],
},
keywords=[
"reinforcement learning",
"RLVR",
"RLHF",
"large language models",
"vision-language models",
"reward models",
"omni-modal",
"multi-modal",
"PPO",
"GRPO",
"deep learning",
],
project_urls={
"Source": "https://github.com/opendilab/LightRFT",
"Bug Reports": "https://github.com/opendilab/LightRFT/issues",
},
)