blob: d351306db81d4b9ae35a92d5ce99a80a792dfab0 [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'],
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 Tamd8577572014-02-26 10:06:34 +080020)