blob: ae8cd99853a98f635c6d909d1b2d9c87496c50e1 [file] [log] [blame]
C Shapirod2166672020-03-12 12:55:46 -05001# 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
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)