Charlie Mooney | bbc05f5 | 2015-03-24 13:36:22 -0700 | [diff] [blame] | 1 | # 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 | |
| 5 | from distutils.core import setup |
| 6 | |
| 7 | |
| 8 | setup(name='touch_firmware_test', |
| 9 | version='1.0', |
| 10 | description='Touch Firmware Testing Suite', |
Joseph Hwang | dd5b516 | 2015-04-07 14:19:37 +0800 | [diff] [blame] | 11 | long_description='This contains tools for testing touch devices.', |
Charlie Mooney | bbc05f5 | 2015-03-24 13:36:22 -0700 | [diff] [blame] | 12 | license='BSD-Google', |
| 13 | packages=['webplot', |
| 14 | 'webplot.remote', |
| 15 | 'webplot.remote.mt', |
Jingkui Wang | 7143423 | 2017-06-22 18:26:43 -0700 | [diff] [blame] | 16 | 'webplot.remote.mt.input', |
| 17 | 'heatmap', |
| 18 | 'heatmap.remote', |
| 19 | 'heatmap.remote.hidraw', |
| 20 | 'heatmap.remote.hidraw.input'], |
Jingkui Wang | 7ed915f | 2017-06-22 17:31:54 -0700 | [diff] [blame] | 21 | package_data={'webplot': ['*.html', '*.js', 'webplot', 'linechart/*.js', |
| 22 | 'linechart/*.html'], |
Jingkui Wang | 7143423 | 2017-06-22 18:26:43 -0700 | [diff] [blame] | 23 | 'webplot.remote': ['data/*',], |
| 24 | 'heatmap': ['*.html', '*.js'], |
| 25 | 'heatmap.remote': ['data/*',]}, |
Charlie Mooney | bbc05f5 | 2015-03-24 13:36:22 -0700 | [diff] [blame] | 26 | author='Joseph Hwang', |
| 27 | author_email='josephsih@chromium.org', |
| 28 | ) |