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 | |
Joseph Hwang | 6a74630 | 2016-06-15 17:46:48 +0800 | [diff] [blame] | 6 | # Needs to import setup from setuptools instead of distutils.core |
| 7 | # in order to use the install_requires argument. |
| 8 | from setuptools import setup |
Tom Wai-Hong Tam | d857757 | 2014-02-26 10:06:34 +0800 | [diff] [blame] | 9 | |
| 10 | setup( |
Tom Wai-Hong Tam | 0d12884 | 2015-01-14 07:13:45 +0800 | [diff] [blame] | 11 | name='chameleond', |
| 12 | version='0.0.2', |
Moja Hsu | 70a5a60 | 2017-02-24 14:43:03 +0800 | [diff] [blame] | 13 | packages=['chameleond', 'chameleond.devices', 'chameleond.drivers', |
| 14 | 'chameleond.utils'], |
Daniel Winkler | e4e0cb9 | 2019-08-22 15:31:12 -0700 | [diff] [blame] | 15 | package_data={'chameleond': ['data/*.bin', 'data/*.bitmap', 'utils/*.xml', |
Joseph Hwang | 6926787 | 2020-03-23 16:20:12 +0800 | [diff] [blame] | 16 | 'utils/*.conf', 'utils/data/*/*']}, |
Tom Wai-Hong Tam | 0d12884 | 2015-01-14 07:13:45 +0800 | [diff] [blame] | 17 | url='http://www.chromium.org', |
| 18 | maintainer='chromium os', |
| 19 | maintainer_email='chromium-os-dev@chromium.org', |
| 20 | license='Chromium', |
| 21 | description='Server to communicate and control Chameleon board.', |
| 22 | long_description='Server to communicate and control Chameleon board.', |
Joseph Hwang | 177365e | 2021-04-22 15:20:34 +0800 | [diff] [blame] | 23 | install_requires=['schedule', 'future'], |
Wai-Hong Tam | 0e48339 | 2018-01-18 14:46:30 -0800 | [diff] [blame] | 24 | scripts=['utils/lock_u_boot_console', 'utils/run_chameleond', |
| 25 | 'utils/run_displayd', 'utils/run_stream_server', |
| 26 | 'chameleond/utils/server_time', 'utils/run_scheduler', |
| 27 | 'utils/run_chameleon_updater'] |
Tom Wai-Hong Tam | d857757 | 2014-02-26 10:06:34 +0800 | [diff] [blame] | 28 | ) |