Skip to content

Commit

Permalink
rename package and add evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
AdilZouitine committed Oct 13, 2023
1 parent e99ca7c commit 4d27506
Show file tree
Hide file tree
Showing 20 changed files with 1,716 additions and 13 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
python: 38
platform: manylinux_x86_64
- os: ubuntu-latest
python: 39
platform: manylinux_x86_64
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# RRLCS
Robust Reinforcement Learning Control Suite
# rrls
<img src="./media/rrls_logo.png" width="200" height="200" />

Robust Reinforcement Learning Suite

## 🙏 Acknowledgments

Expand Down
Binary file added media/rrls_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"

[project]
name = "rrlcs"
name = "rrls"
description = "A robust reinforcement learning benchmark for continuous control tasks."
readme = "README.md"
requires-python = ">= 3.8"
Expand Down Expand Up @@ -53,15 +53,15 @@ Documentation = "https://github.com/SuReLI/RRLCS"
"Bug Report" = "https://github.com/SuReLI/RRLCS"

[project.entry-points."gymnasium.envs"]
__root__ = "rrlcs.__init__:register_robotics_envs"
__root__ = "rrls.__init__:register_robotics_envs"

[tool.setuptools]
include-package-data = true


# Linters and Test tools #######################################################
[tool.mypy]
files = "rrlcs"
files = "rrls"

[tool.ruff]
select = ["E", "F", "I", "UP"] # https://beta.ruff.rs/docs/rules/
Expand All @@ -78,11 +78,11 @@ safe = true
[tool.isort]
atomic = true
profile = "black"
src_paths = ["rrlcs", "test"]
src_paths = ["rrls", "test"]

[tool.pyright]
include = [
"rrlcs/**",
"rrls/**",
"test/**"
]

Expand Down
Loading

0 comments on commit 4d27506

Please sign in to comment.