4 Star 15 Fork 2

TensorLayer/RLzoo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 992 Bytes
一键复制 编辑 原始数据 按行查看 历史
quantumiracle 提交于 2020-05-21 13:04 +08:00 . version 1.0.3
from setuptools import setup, find_packages
# Read requirements.txt, ignore comments
try:
REQUIRES = list()
f = open("requirements.txt", "rb")
for line in f.read().decode("utf-8").split("\n"):
line = line.strip()
if "#" in line:
line = line[:line.find("#")].strip()
if line:
REQUIRES.append(line)
except:
print("'requirements.txt' not found!")
REQUIRES = list()
setup(
name = "rlzoo",
version = "1.0.3",
include_package_data=True,
author='Zihan Ding, Tianyang Yu, Yanhua Huang, Hongming Zhang, Hao Dong',
author_email='zhding@mail.ustc.edu.cn',
url = "https://github.com/tensorlayer/RLzoo" ,
license = "apache" ,
packages = find_packages(),
install_requires=REQUIRES,
description = "A collection of reinforcement learning algorithms with hierarchical code structure and convenient APIs.",
keywords = "Reinforcment Learning",
platform=['any'],
python_requires='>=3.5',
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/TensorLayer/RLzoo.git
git@gitee.com:TensorLayer/RLzoo.git
TensorLayer
RLzoo
RLzoo
master

搜索帮助