blob: 5c441c52f35d1191f3d519a66f5f695ec598bcb5 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2017 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""The setuptools setup file."""
from __future__ import print_function
import setuptools
setuptools.setup(
name="cros_config_host",
version="1",
author="Simon Glass",
author_email="sjg@chromium.org",
url="README.md",
packages=["cros_config_host"],
package_data={
"cros_config_host": [
"schema.json",
]
},
entry_points={
"console_scripts": [
f"{script} = cros_config_host.{script}:main"
for script in (
"cros_config_host",
"cros_config_merge_backfilled_config",
"cros_config_proto_converter",
"cros_config_schema",
)
],
},
description="Access to the model configuration from the host",
)