C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 1 | # Copyright 2020 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 | |||||
5 | from distutils.core import setup | ||||
6 | |||||
7 | |||||
8 | setup(name='config', | ||||
9 | version='1.0', | ||||
10 | description='Module to access Config API python proto bindings', | ||||
11 | packages=['config'], | ||||
12 | package_data={'config': [ | ||||
13 | 'api/*.py', | ||||
14 | 'api/software/*.py', | ||||
15 | 'api/software/**/*.py', | ||||
16 | ]},) |