-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (28 loc) · 796 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
from setuptools import find_namespace_packages, setup
setup(
name="microsat_rl",
version="0.1.0",
description="CS 295 Reinforcement Learning: Microsatellite Attitude Control",
author="James-Andrew Sarmiento",
packages=find_namespace_packages(include=["src*"]),
python_requires="~=3.6.9",
install_requires=[
"h5py==2.10.0",
"cattrs==1.0.0",
"scipy==1.5.4",
"attrs==21.2.0",
"gym~=0.18.3",
"gym-unity~=0.19.0",
"mlagents~=0.19.0",
"mlagents-envs~=0.19.0",
"torch~=1.8.1",
"tensorflow~=1.14.0",
"mpi4py~=3.0.3",
"mujoco-py~=1.50.1.68",
"matplotlib~=3.3.4",
"wandb~=0.10.31",
"gdown~=3.13",
"numpy~=1.16.4",
"omegaconf~=2.1.0"
],
)