mirror of
https://github.com/gryf/coach.git
synced 2025-12-17 11:10:20 +01:00
Added pyyaml dependecy to setup/requirements
This commit is contained in:
@@ -9,3 +9,4 @@ scipy==0.19.0
|
|||||||
scikit-image==0.13.0
|
scikit-image==0.13.0
|
||||||
gym
|
gym
|
||||||
tensorflow
|
tensorflow
|
||||||
|
PyYAML==3.12
|
||||||
|
|||||||
40
setup.py
40
setup.py
@@ -5,24 +5,24 @@ Setup for the coach project
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
setup(name="coach",
|
setup(name='coach',
|
||||||
version="0.7",
|
version='0.7',
|
||||||
description="Reinforcement Learning Coach",
|
description='Reinforcement Learning Coach',
|
||||||
author="Caspi, Itai and Leibovich, Gal and Novik, Gal",
|
author='Caspi, Itai and Leibovich, Gal and Novik, Gal',
|
||||||
author_email="gal.novik@intel.com",
|
author_email='gal.novik@intel.com',
|
||||||
url="https://github.com/NervanaSystems/coach",
|
url='https://github.com/NervanaSystems/coach',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
download_url="https://github.com/NervanaSystems/coach",
|
download_url='https://github.com/NervanaSystems/coach',
|
||||||
keywords=["reinforcement", "machine", "learning"],
|
keywords=['reinforcement', 'machine', 'learning'],
|
||||||
install_requires=["annoy", "Pillow", "matplotlib", "numpy", "pandas",
|
install_requires=['annoy', 'Pillow', 'matplotlib', 'numpy', 'pandas',
|
||||||
"pygame", "PyOpenGL", "scipy", "scikit-image",
|
'pygame', 'PyOpenGL', 'scipy', 'scikit-image',
|
||||||
"tensorflow", "gym"],
|
'tensorflow', 'gym', 'PyYAML'],
|
||||||
scripts=["scripts/coach"],
|
scripts=['scripts/coach'],
|
||||||
classifiers=["Programming Language :: Python :: 3",
|
classifiers=['Programming Language :: Python :: 3',
|
||||||
"Development Status :: 4 - Beta",
|
'Development Status :: 4 - Beta',
|
||||||
"Environment :: Console",
|
'Environment :: Console',
|
||||||
"Intended Audience :: End Users/Desktop",
|
'Intended Audience :: End Users/Desktop',
|
||||||
"License :: OSI Approved :: Apache Software License",
|
'License :: OSI Approved :: Apache Software License',
|
||||||
"Operating System :: OS Independent",
|
'Operating System :: OS Independent',
|
||||||
"Topic :: Scientific/Engineering :: Artificial "
|
'Topic :: Scientific/Engineering :: Artificial '
|
||||||
"Intelligence"])
|
'Intelligence'])
|
||||||
|
|||||||
Reference in New Issue
Block a user