blob: 6bafedd8ec80005c41b29a42ff797e80c6338e50 [file] [log] [blame]
Charlie Mooneybbc05f52015-03-24 13:36:22 -07001# Copyright 2015 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from distutils.core import setup
6
7
8setup(name='touch_firmware_test',
9 version='1.0',
10 description='Touch Firmware Testing Suite',
Joseph Hwangdd5b5162015-04-07 14:19:37 +080011 long_description='This contains tools for testing touch devices.',
Charlie Mooneybbc05f52015-03-24 13:36:22 -070012 license='BSD-Google',
13 packages=['webplot',
14 'webplot.remote',
15 'webplot.remote.mt',
16 'webplot.remote.mt.input'],
17 package_data={'webplot': ['*.html', '*.js', 'webplot'],
18 'webplot.remote': ['data/*',]},
19 author='Joseph Hwang',
20 author_email='josephsih@chromium.org',
21)