From 4a2e030b9a5b57bb267a8c6a26414a5b0f293978 Mon Sep 17 00:00:00 2001 From: Cassidy Laidlaw Date: Fri, 19 Apr 2024 15:37:28 -0700 Subject: [PATCH] Fix pyproject to include packages --- pyproject.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cba10f9..418704c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools"] [project] name = "effective-horizon" -version = "0.1.0" +version = "0.1.1" description = 'Code for the NeurIPS 2023 paper "Bridging RL Theory and Practice with the Effective horizon" and the ICLR 2024 paper "The Effective Horizon Explains Deep RL Performance in Stochastic Environments".' authors = [ {name = "Cassidy Laidlaw", email = "cassidy_laidlaw@berkeley.edu"}, @@ -43,6 +43,17 @@ Homepage = "https://github.com/cassidylaidlaw/effective-horizon" [tool.setuptools.dynamic] readme = {file=["README.md"], content-type="text/markdown"} +[tool.setuptools] +packages = [ + "effective_horizon", + "effective_horizon.envs", + "effective_horizon.scripts", + "effective_horizon.sb3", + "effective_horizon.sb3.algorithms", + "effective_horizon.rllib", + "effective_horizon.rllib.algorithms", +] + [project.optional-dependencies] dev = [ "black",