#!/usr/bin/env python

from distutils.core import setup

setup(name='SteamVR',
      version="0.1.8",
      description='Wrapper for SteamVR tools',
      author='Philip Krejov',
      author_email='philip@bigscreen.com',
      packages=['steamvr', 'steamvr.unbuffered'],
      package_data={'steamvr': ['tools/bin/win64/lhcalib.exe',
                                'tools/bin/win64/lighthouse_console.exe',
                                'init_json_evt.json']},
      install_requires=['dacite', 'psutil', 'polling2', 'numpy'])

