您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
616 B
21 行
616 B
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
with open(path.join(here, "..", "VERSION")) as f:
|
|
version_string = f.read().strip()
|
|
|
|
setup(
|
|
name="gym_unity",
|
|
version=version_string,
|
|
description="Unity Machine Learning Agents Gym Interface",
|
|
license="Apache License 2.0",
|
|
author="Unity Technologies",
|
|
author_email="ML-Agents@unity3d.com",
|
|
url="https://github.com/Unity-Technologies/ml-agents",
|
|
packages=find_packages(),
|
|
install_requires=["gym", "mlagents_envs=={}".format(version_string)],
|
|
)
|