1 Star 0 Fork 0

陈狗翔 / adeptRL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
Joe Tatusko 提交于 2019-11-18 10:44 . add torch dependencies
from setuptools import setup, find_packages
from adept.globals import VERSION
# https://github.com/kennethreitz/setup.py/blob/master/setup.py
with open("README.md", "r") as fh:
long_description = fh.read()
extras = {
'mpi': ['mpi4py>=3.0'],
'sc2': ['pysc2>=2.0'],
'profiler': ['pyinstrument>=2.0']
}
test_deps = ['pytest']
all_deps = []
for group_name in extras:
all_deps += extras[group_name]
all_deps = all_deps + test_deps
extras['all'] = all_deps
setup(
name='adeptRL',
version=VERSION,
author='heron',
author_email='adept@heronsystems.com',
description='Reinforcement Learning Framework',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/heronsystems/adeptRL',
license='GNU',
python_requires='>=3.5.0',
packages=find_packages(),
install_requires=[
'numpy>=1.14',
'gym[atari]>=0.10',
'absl-py>=0.2',
'tensorboard>=1.14',
'cloudpickle>=0.5',
'opencv-python-headless>=3.4',
'pyzmq>=17.1.2',
'docopt>=0.6',
'torch>=1.3.1',
'torchvision>=0.4.2'
],
test_requires=test_deps,
extras_require=extras,
include_package_data=True
)
1
https://gitee.com/ChenGouXiang/adeptRL.git
git@gitee.com:ChenGouXiang/adeptRL.git
ChenGouXiang
adeptRL
adeptRL
master

搜索帮助