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', |
| 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 | ) |