-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 926 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 926 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "minirl"
version = "0.1.0"
description = "Minimal RL training for LLMs. Generate with vLLM. Train with PyTorch FSDP."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Ro" },
]
keywords = ["reinforcement-learning", "llm", "grpo", "vllm", "fsdp"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.3",
"transformers>=4.40",
"vllm>=0.8",
]
[project.optional-dependencies]
async = ["pyzmq>=25.0"]
dev = ["pytest", "ruff"]
[project.urls]
Repository = "https://github.com/ro/minirl"
[tool.ruff]
line-length = 100