Skip to content

Commit

Permalink
added pip requirements for rl control
Browse files Browse the repository at this point in the history
  • Loading branch information
1b15 committed May 23, 2024
1 parent e02094a commit 899616c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions requirements_rl_control.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
gymnasium
matplotlib
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
with open("requirements.txt") as f:
requirements = f.read().splitlines()

with open("requirements_rl_control.txt") as f:
requirements_rl_control = f.read().splitlines()

setuptools.setup(
name="neurolib",
version="0.6.1",
Expand All @@ -27,5 +30,8 @@
],
python_requires=">=3.6",
install_requires=requirements,
extras_require={
'rl_control': requirements_rl_control
}
include_package_data=True,
)

0 comments on commit 899616c

Please sign in to comment.