Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nemo_reinforcer/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@


MAJOR = 0
MINOR = 1
MINOR = 2
PATCH = 0
PRE_RELEASE = ""
PRE_RELEASE = "dev"

# Use the following formatting: (major, minor, patch, pre-release)
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)
Expand Down
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "nemo-reinforcer"
version = "0.0.1"
dynamic = [
"version",
"readme",
]
description = "Nemo-Reinforcer: A Scalable and Efficient Post-Training Library for Models Ranging from 1 GPU to 1000s, and from Tiny to >100B Parameters"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache 2.0"}
dependencies = [
Expand All @@ -29,6 +31,10 @@ dependencies = [
[tool.setuptools]
packages = ["nemo_reinforcer"]

[tool.setuptools.dynamic]
version = {attr = "nemo_reinforcer.__version__"} # any module attribute compatible with ast.literal_eval
readme = {file = "README.md", content-type = "text/markdown"}

[project.optional-dependencies]
build = [
"torch==2.6.0",
Expand Down