-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3747b1b
commit 4a2e030
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]"}, | ||
|
@@ -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", | ||
|