https://github.com/Microsoft/CNTK
Raw File
Tip revision: a0be08c6e026b23dd77894a1e81a24ee69f3e3ef authored by thhoens on 30 August 2016, 19:41:25 UTC
Created workaround for API memory leak
Tip revision: a0be08c
setup.py
# Copyright (c) Microsoft. All rights reserved.

# Licensed under the MIT license. See LICENSE.md file in the project root 
# for full license information.
# ==============================================================================

from distutils.core import setup

setup(name='CNTK',
      version='1.5',
      description='CNTK',
      author='Microsoft',
      author_email='deepblis@microsoft.com',
      url='cntk.ai',
      packages=['cntk', 'cntk.examples', 'cntk.tests', 'cntk.utils', 'cntk.ops'],
      package_data={'cntk': ['templates/*.cntk']}
     )
back to top