1 Star 0 Fork 0

sunfangyi/rlpyt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
import setuptools
INSTALL_REQUIRES = [
'numpy',
'torch',
]
TEST_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov',
# unmandatory dependencies of the package itself
'atari_py', 'opencv-python', 'psutil', 'pyprind', 'gym',
]
setuptools.setup(
name='rlpyt',
version='0.1.1dev',
packages=setuptools.find_packages(),
license='MIT License',
long_description=open('README.md').read(),
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sunfangyi/rlpyt.git
git@gitee.com:sunfangyi/rlpyt.git
sunfangyi
rlpyt
rlpyt
master

搜索帮助