-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 808 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
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name='minjaerl',
version="0.0.1",
description=(
'minjae-rl'
),
author='Minjae Cho',
author_email='[email protected]',
maintainer='Mgineer117',
packages=find_packages(),
platforms=["all"],
install_requires=[
"gym>=0.15.4,<=0.26.2",
"mujoco==2.3.3",
"cython<3",
"cvxpy",
"matplotlib",
"h5py",
"opencv-python",
"numpy<1.24",
"pandas",
"scikit-learn",
#"ray==1.13.0",
"torch==2.3.0",
"seaborn",
"oauthlib>=3.0.0",
"tensorboard",
"tqdm",
"wandb"
]
)