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 | |
C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 7 | setup(name='config', |
| 8 | version='1.0', |
| 9 | description='Module to access Config API python proto bindings', |
| 10 | packages=['config'], |
| 11 | package_data={'config': [ |
| 12 | 'api/*.py', |
| 13 | 'api/software/*.py', |
| 14 | 'api/software/**/*.py', |
C Shapiro | fd83a5f | 2020-03-31 08:56:20 -0500 | [diff] [blame^] | 15 | 'payload/*.py', |
C Shapiro | ea4d063 | 2020-03-14 04:30:12 -0500 | [diff] [blame] | 16 | 'test/*.py', |
| 17 | 'test/fake_program/*', |
| 18 | 'test/fake_project/*', |
C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 19 | ]},) |