forked from OpenRLHF/OpenRLHF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
89 lines (68 loc) · 2.25 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import os
import sys
import subprocess
import platform
from datetime import datetime
from setuptools import find_packages, setup
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
_build_mode = os.getenv("OPENRLHF_BUILD_MODE", "")
def _is_nightly():
return _build_mode.lower() == "nightly"
def _fetch_requirements(path):
with open(path, "r") as fd:
return [r.strip() for r in fd.readlines()]
def _fetch_readme():
with open("README.md", encoding="utf-8") as f:
return f.read()
def _fetch_version():
with open("version.txt", "r") as f:
version = f.read().strip()
if _is_nightly():
now = datetime.now()
date_str = now.strftime("%Y%m%d")
version += f".dev{date_str}"
return version
def _fetch_package_name():
return "openrlhf-nightly" if _is_nightly() else "openrlhf"
# Custom wheel class to modify the wheel name
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = False
def get_tag(self):
python_version = f"cp{sys.version_info.major}{sys.version_info.minor}"
abi_tag = f"{python_version}"
if platform.system() == "Linux":
platform_tag = "manylinux1_x86_64"
else:
platform_tag = platform.system().lower()
return python_version, abi_tag, platform_tag
# Setup configuration
setup(
name=_fetch_package_name(),
version=_fetch_version(),
packages=find_packages(
exclude=(
"data",
"docs",
"examples",
)
),
description="A Ray-based High-performance RLHF framework.",
long_description=_fetch_readme(),
long_description_content_type="text/markdown",
install_requires=_fetch_requirements("requirements.txt"),
extras_require={
"vllm": ["vllm==0.4.2"],
"vllm_latest": ["vllm>0.4.2"],
},
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: GPU :: NVIDIA CUDA",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Distributed Computing",
],
cmdclass={"bdist_wheel": bdist_wheel},
)