From e6d00854b241c37dd692b2cc0a2f3f970875cb97 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sat, 10 Feb 2024 15:52:32 +0100 Subject: [PATCH] Add dependencies for making docs --- pyproject.toml | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 20e40b0..b1efcf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,7 @@ box2d = ["gymnasium[box2d]>=0.26.0"] mujoco-legacy = ["mujoco-py>=2.1,<2.2", "cython<3"] jax = ["jax>=0.4.0", "jaxlib>=0.4.0"] mushroom-rl = ["mushroom-rl"] +docs = ['sphinx==7.1.2', 'sphinx-rtd-theme==1.3.0rc1', 'myst-parser'] all = [ # include all the optional dependencies diff --git a/setup.py b/setup.py index 2bd077d..77b5803 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ extras = { 'mujoco-legacy': ['mujoco-py >=2.1,<2.2', 'cython<3'], 'jax': ["jax >=0.4.0", "jaxlib >=0.4.0"], 'mushroom-rl': ['mushroom-rl'], + 'docs': ['sphinx==7.1.2', 'sphinx-rtd-theme==1.3.0rc1', 'myst-parser'] } # All dependencies