blob: 6f17dd4a5c3555f6f5a03e7c818e8654817e9522 [file] [log] [blame]
Joseph Hwangf27323e2015-01-29 09:00:201# 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='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 Hwang38da7842015-03-16 02:37:5216 'webplot.remote.mt',
17 'webplot.remote.mt.input'],
Joseph Hwangeb0590f2015-03-18 07:16:3318 package_data={'webplot': ['*.html', '*.js', 'webplot'],
19 'webplot.remote': ['data/*',]},
Joseph Hwangf27323e2015-01-29 09:00:2020 author='Joseph Hwang',
21 author_email='[email protected]',
22)