blob: 9767d4a5879ecbd18714510062ee15e436d91dea [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',
Jingkui Wang71434232017-06-22 18:26:43 -070016 'webplot.remote.mt.input',
17 'heatmap',
18 'heatmap.remote',
19 'heatmap.remote.hidraw',
20 'heatmap.remote.hidraw.input'],
Jingkui Wang7ed915f2017-06-22 17:31:54 -070021 package_data={'webplot': ['*.html', '*.js', 'webplot', 'linechart/*.js',
22 'linechart/*.html'],
Jingkui Wang71434232017-06-22 18:26:43 -070023 'webplot.remote': ['data/*',],
24 'heatmap': ['*.html', '*.js'],
25 'heatmap.remote': ['data/*',]},
Charlie Mooneybbc05f52015-03-24 13:36:22 -070026 author='Joseph Hwang',
27 author_email='josephsih@chromium.org',
28)