Tom Wai-Hong Tam | d857757 | 2014-02-26 10:06:34 +0800 | [diff] [blame] | 1 | # 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 | |
| 6 | from distutils.core import setup |
| 7 | |
| 8 | setup( |
Tom Wai-Hong Tam | 0d12884 | 2015-01-14 07:13:45 +0800 | [diff] [blame^] | 9 | name='chameleond', |
| 10 | version='0.0.2', |
| 11 | packages=['chameleond', 'chameleond.drivers', 'chameleond.utils'], |
| 12 | package_data={'chameleond': ['data/*.bin']}, |
| 13 | 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'] |
Tom Wai-Hong Tam | d857757 | 2014-02-26 10:06:34 +0800 | [diff] [blame] | 20 | ) |