1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

Added pyyaml dependecy to setup/requirements

This commit is contained in:
Roman Dobosz
2018-04-27 14:48:43 +02:00
parent 676c69e391
commit 26a2f94f43
2 changed files with 21 additions and 20 deletions

View File

@@ -5,24 +5,24 @@ Setup for the coach project
from setuptools import setup, find_packages
setup(name="coach",
version="0.7",
description="Reinforcement Learning Coach",
author="Caspi, Itai and Leibovich, Gal and Novik, Gal",
author_email="gal.novik@intel.com",
url="https://github.com/NervanaSystems/coach",
setup(name='coach',
version='0.7',
description='Reinforcement Learning Coach',
author='Caspi, Itai and Leibovich, Gal and Novik, Gal',
author_email='gal.novik@intel.com',
url='https://github.com/NervanaSystems/coach',
packages=find_packages(),
download_url="https://github.com/NervanaSystems/coach",
keywords=["reinforcement", "machine", "learning"],
install_requires=["annoy", "Pillow", "matplotlib", "numpy", "pandas",
"pygame", "PyOpenGL", "scipy", "scikit-image",
"tensorflow", "gym"],
scripts=["scripts/coach"],
classifiers=["Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial "
"Intelligence"])
download_url='https://github.com/NervanaSystems/coach',
keywords=['reinforcement', 'machine', 'learning'],
install_requires=['annoy', 'Pillow', 'matplotlib', 'numpy', 'pandas',
'pygame', 'PyOpenGL', 'scipy', 'scikit-image',
'tensorflow', 'gym', 'PyYAML'],
scripts=['scripts/coach'],
classifiers=['Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial '
'Intelligence'])