Skip to content

Commit

Permalink
Fix pyproject to include packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cassidylaidlaw committed Apr 19, 2024
1 parent 3747b1b commit 4a2e030
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"},
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 4a2e030

Please sign in to comment.