blob: 983a6b1eaf480ebe984105aeb38c67276287625f [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'],
Jingkui Wang7ed915f2017-06-22 17:31:54 -070017 package_data={'webplot': ['*.html', '*.js', 'webplot', 'linechart/*.js',
18 'linechart/*.html'],
Charlie Mooneybbc05f52015-03-24 13:36:22 -070019 'webplot.remote': ['data/*',]},
20 author='Joseph Hwang',
21 author_email='josephsih@chromium.org',
22)