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( |
| 9 | name = 'chameleond', |
| 10 | version = '0.0.1', |
| 11 | packages = ['chameleond', 'chameleond.drivers'], |
| 12 | url = 'http://www.chromium.org', |
| 13 | maintainer = 'chromium os', |
| 14 | maintainer_email = 'chromium-os-dev@chromium.org', |
| 15 | license = 'Chromium', |
| 16 | description = 'Server to communicate and control Chameleon board.', |
| 17 | long_description = 'Server to communicate and control Chameleon board.', |
| 18 | scripts = ['utils/run_chameleond'] |
| 19 | ) |