-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·22 lines (18 loc) · 874 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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.4.0',
description='Unity Machine Learning Agents',
license='Apache License 2.0',
author='Unity Technologies',
author_email='[email protected]',
url='https://github.com/Unity-Technologies/ml-agents',
packages=find_packages(),
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.")
)