Joseph Hwang | f27323e | 2015-01-29 09:00:20 | [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='webplot', |
| 9 | version='1.0', |
| 10 | description='Web drawing tool for touch devices', |
| 11 | long_description='It is a tool displaying finger traces on a browser. ' |
| 12 | 'It consists of a cherrypy server and browser clients.', |
| 13 | license='BSD-Google', |
| 14 | packages=['webplot', |
| 15 | 'webplot.remote', |
Joseph Hwang | 38da784 | 2015-03-16 02:37:52 | [diff] [blame] | 16 | 'webplot.remote.mt', |
| 17 | 'webplot.remote.mt.input'], |
Joseph Hwang | eb0590f | 2015-03-18 07:16:33 | [diff] [blame] | 18 | package_data={'webplot': ['*.html', '*.js', 'webplot'], |
| 19 | 'webplot.remote': ['data/*',]}, |
Joseph Hwang | f27323e | 2015-01-29 09:00:20 | [diff] [blame] | 20 | author='Joseph Hwang', |
| 21 | author_email='[email protected]', |
| 22 | ) |