blob: 433df6cd2c9701ccf4204a749bff70488cb4885f [file] [log] [blame]
Mike Frysingerb1237032022-09-12 14:44:40 -04001# Copyright 2020 The ChromiumOS Authors
C Shapirod2166672020-03-12 12:55:46 -05002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Chris McDonald7959ae72021-09-22 09:35:01 -06005from setuptools import find_packages, setup
C Shapirod2166672020-03-12 12:55:46 -05006
Chris McDonald7959ae72021-09-22 09:35:01 -06007setup(
8 name='chromiumos',
9 version='1.0',
10 description='Module to access Config API python proto bindings',
11 packages=find_packages(),
12 package_data={
13 'chromiumos.config.test': ['fake_program/*', 'fake_project/*']
14 },
15)