您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
891 B
22 行
891 B
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, Command, find_packages
|
|
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.read().splitlines()
|
|
|
|
setup(name='unityagents',
|
|
version='0.2.0',
|
|
description='Unity Machine Learning Agents',
|
|
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(exclude = ['ppo']),
|
|
install_requires = required,
|
|
long_description= ("Unity Machine Learning Agents allows researchers and developers "
|
|
"to transform games and simulations created using the Unity Editor into environments "
|
|
"where intelligent agents can be trained using reinforcement learning, evolutionary "
|
|
"strategies, or other machine learning methods through a simple to use Python API.")
|
|
)
|