From 26a2f94f433297bfcf72731a46d4b33e91429e63 Mon Sep 17 00:00:00 2001 From: Roman Dobosz Date: Fri, 27 Apr 2018 14:48:43 +0200 Subject: [PATCH] Added pyyaml dependecy to setup/requirements --- requirements.txt | 1 + setup.py | 40 ++++++++++++++++++++-------------------- 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/requirements.txt b/requirements.txt index 75a6ed7..7208fdf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,3 +9,4 @@ scipy==0.19.0 scikit-image==0.13.0 gym tensorflow +PyYAML==3.12 diff --git a/setup.py b/setup.py index 6373479..06f6712 100755 --- a/setup.py +++ b/setup.py @@ -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'])