-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
22 lines (21 loc) · 864 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
setup(
name="lge",
packages=find_packages(),
url="https://github.com/qgallouedec/go-explore",
description="Implementation of Go-Explore based on stable-baselines3",
long_description=open("README.md").read(),
install_requires=[
"stable_baselines3 @ git+https://[email protected]/qgallouedec/stable-baselines3@IM_and_Vec_HER",
"sb3_contrib @ git+https://[email protected]/qgallouedec/stable-baselines3-contrib@IM_and_Vec_HER",
"importlib-metadata==4.13.0",
],
extras_require={
"tests": ["pytest", "black", "isort"],
"experiments": [
"optuna",
"panda_gym @ git+https://github.com/qgallouedec/panda-gym.git@no-task",
"gym_continuous_maze @ git+https://github.com/qgallouedec/gym-continuous-maze.git",
],
},
)