forked from redai-infra/Relax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (56 loc) · 2.05 KB
/
setup.py
File metadata and controls
67 lines (56 loc) · 2.05 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
66
67
# Copyright (c) 2026 Relax Authors. All Rights Reserved.
from setuptools import find_packages, setup
import versioneer
def get_requires():
def read_requires(requirements_file):
with open(requirements_file, "r", encoding="utf-8") as f:
file_content = f.read()
lines = [
line.strip() for line in file_content.strip().split("\n") if not line.startswith("#") and line != ""
]
return lines
return read_requires("requirements.txt")
extra_require = {
"test": [],
"gpu": [],
"math": [],
"vllm": [],
"sglang": [],
"mcore": [],
"transferqueue": [],
}
def main():
setup(
name="relax",
version=versioneer.get_version(),
author="Relax Contributors",
author_email="Xiaohongshu-AI Platform",
description="Relax: Reinforcement Engine Leveraging Agentic X-modality",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords=["RL", "Agentic", "Multi-modality", "pytorch", "deep learning", "megatron", "vllm", "sglang"],
license="Xiaohongshu",
url="https://github.com/redai-infra/Relax",
package_dir={"": "."},
package_data={"": ["*.yaml"]},
packages=find_packages(),
python_requires=">=3.10.0",
install_requires=get_requires(),
extras_require=extra_require,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Xiaohongshu REDers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
cmdclass=dict(
versioneer.get_cmdclass(),
),
)
if __name__ == "__main__":
main()