blob: 7242f2404e048af9bd832c817205db8b36f0bc1d [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(
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)