您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
952 B
30 行
952 B
from setuptools import setup
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
setup(
|
|
name="mlagents_envs",
|
|
version="0.8.1",
|
|
description="Unity Machine Learning Agents Interface",
|
|
url="https://github.com/Unity-Technologies/ml-agents",
|
|
author="Unity Technologies",
|
|
author_email="ML-Agents@unity3d.com",
|
|
classifiers=[
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python :: 3.6",
|
|
],
|
|
packages=["mlagents.envs", "mlagents.envs.communicator_objects"], # Required
|
|
zip_safe=False,
|
|
install_requires=[
|
|
"Pillow>=4.2.1,<=5.4.1",
|
|
"numpy>=1.13.3,<=1.16.1",
|
|
"pytest>=3.2.2,<4.0.0",
|
|
"protobuf>=3.6,<3.7",
|
|
"grpcio>=1.11.0,<1.12.0",
|
|
"cloudpickle==0.8.1",
|
|
],
|
|
python_requires=">=3.5,<3.8",
|
|
)
|