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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ HighJax was produced as part of our research project about [BXRL:Behavior-Explai
## Installation

```bash
pip install highjax # Minimal installation
pip install "highjax[cuda12]" # Including GPU support
pip install "highjax[trainer]" # Including PPO implementation
pip install "highjax[cuda12,trainer]" # Including both
pip install highjax-rl # Minimal installation
pip install "highjax-rl[cuda12]" # Including GPU support
pip install "highjax-rl[trainer]" # Including PPO implementation
pip install "highjax-rl[cuda12,trainer]" # Including both
```

## Quick Start
Expand Down
Binary file added misc/videos/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "highjax-rl"
version = "0.1.1"
version = "0.1.3"
description = "HighJax: A JAX implementation of the HighwayEnv driving environment"
readme = "README.md"
license = "MIT"
Expand Down Expand Up @@ -66,6 +66,11 @@ highjax_trainer = "highjax_trainer:cli"
[tool.setuptools.package-data]
highjax = ["behaviors/*.json"]

[tool.release-pypi]
readme-replacements = [
["demo.webp", "demo.gif"],
]

[tool.setuptools.packages.find]
where = ["."]
include = ["highjax*"]
Expand Down
Loading