forked from RL-Align/RL-Kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 950 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 950 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "RL-Kernel"
version = "0.1.0"
description = "High-performance RL training engine focused on kernel fusion and memory efficiency."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "RL-Kernel Contributors"}
]
dependencies = [
"torch>=2.4.1",
"tabulate",
"numpy",
"accelerate",
"transformers",
]
[project.optional-dependencies]
cuda = ["flashinfer>=0.1.6", "nvidia-ml-py"]
rocm = ["aiter"]
vllm = ["vllm>=0.6.0"]
dev = ["pytest", "black", "isort", "ruff", "mypy", "pre-commit"]
[tool.setuptools.packages.find]
where = ["."]
include = ["rl_engine*"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "B"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.mypy]
ignore_missing_imports = true
follow_imports = "silent"