blob: edf0614848bc1462015d5fe2791a1c1ed2f74745 [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(
Tom Wai-Hong Tam0d128842015-01-14 07:13:45 +08009 name='chameleond',
10 version='0.0.2',
11 packages=['chameleond', 'chameleond.drivers', 'chameleond.utils'],
Johny Lin9d1be882016-04-01 16:03:01 +080012 package_data={'chameleond': ['data/*.bin', 'data/*.bitmap']},
Tom Wai-Hong Tam0d128842015-01-14 07:13:45 +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.',
Johny Lin9d1be882016-04-01 16:03:01 +080019 scripts=['utils/run_chameleond', 'utils/run_displayd']
Tom Wai-Hong Tamd8577572014-02-26 10:06:34 +080020)