blob: 15a69c94b1865c65760996c5e48873cac7388653 [file] [log] [blame]
Tom Wai-Hong Tamd8577572014-02-26 10:06:34 +08001# Copyright (c) 2014 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"""Setup script to distribute and install Chameleond library and scripts."""
5
6from distutils.core import setup
7
8setup(
9 name = 'chameleond',
Wai-Hong Tam767a6112014-03-17 16:02:19 -070010 version = '0.0.2',
Tom Wai-Hong Tam60c4b112014-04-29 18:24:45 +080011 packages = ['chameleond', 'chameleond.drivers', 'chameleond.utils'],
Tom Wai-Hong Tam8db3cdd2014-03-03 15:08:55 +080012 package_data = {'chameleond': ['data/*.bin']},
Tom Wai-Hong Tamd8577572014-02-26 10:06:34 +080013 url = 'http://www.chromium.org',
14 maintainer = 'chromium os',
15 maintainer_email = 'chromium-os-dev@chromium.org',
16 license = 'Chromium',
17 description = 'Server to communicate and control Chameleon board.',
18 long_description = 'Server to communicate and control Chameleon board.',
19 scripts = ['utils/run_chameleond']
20)