|
|
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages |
|
|
|
|
|
|
|
VERSION = "0.10.1" |
|
|
|
|
|
|
|
version="0.4.8", |
|
|
|
version=VERSION, |
|
|
|
description="Unity Machine Learning Agents Gym Interface", |
|
|
|
license="Apache License 2.0", |
|
|
|
author="Unity Technologies", |
|
|
|
|
|
|
install_requires=["gym", "mlagents_envs==0.10.1"], |
|
|
|
install_requires=["gym", "mlagents_envs=={}".format(VERSION)], |
|
|
|
) |