-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
23 lines (21 loc) · 891 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='codas',
version=1.0,
description=(
'Sim2Real with GAIL'
),
author='Xiong-Hui Chen, Shengyi Jiang, Feng Xu and Yang Yu',
maintainer='Xiong-Hui Chen, Shengyi Jiang, Feng Xu and Yang Yu',
package_data={'codas': ['mj_env/assets/*.xml']},
packages=[package for package in find_packages(exclude=['secret/*'])
if package.startswith("codas")],
platforms=["all"],
install_requires=[
"stable_baselines==2.10", # to keep the same implementation of vec_normalization
"gym>=0.15", # to keep the same implementation of env.render
]
)