-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
executable file
·58 lines (51 loc) · 1.69 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "packaging", "torch", "pybind11>=2.10.0", "build>=1.2.1"]
build-backend = "setuptools.build_meta"
[project]
name = "realhf"
description = "ReaL: Efficient RLHF Training of Large Language Models with Parameter Reallocation"
readme = "README.md"
requires-python = ">=3.10,<3.12"
dynamic = ["version"]
authors = [
{ name = "Zhiyu Mei", email = "meizy20@mails.tsinghua.edu.cn" },
{ name = "Wei Fu", email = "fuwth17@gmail.com" },
]
maintainers = [
{ name = "Zhiyu Mei", email = "meizy20@mails.tsinghua.edu.cn" },
{ name = "Wei Fu", email = "fuwth17@gmail.com" },
]
keywords = [
"distributed-systems",
"reinforcement-learning-from-human-feedback",
"large-language-models",
"llm-training",
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 2 - Pre-Alpha",
"Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.2",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
[project.urls]
Homepage = "https://github.com/openpsi-project/ReaLHF"
Issues = "https://github.com/openpsi-project/ReaLHF/issues"
Documentation = "https://openpsi-project.github.io/ReaLHF/"
Repository = "https://github.com/openpsi-project/ReaLHF"
[tool.setuptools.dynamic]
version = {attr = "realhf.__version__"}
[tool.setuptools.packages.find]
where = ["."] # ["."] by default
# include = ["csrc/*", "realhf/*"] # ["*"] by default
# exclude = ["tests", "docker"] # empty by default
# namespaces = false # true by default
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.black]
line-length = 88