blob: 2ca69c3b8e22cf7b5afb63a3a12b92acfaad6820 [file] [log] [blame]
# 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="hammerd_api",
version="0.1",
author="Chih-Yu Huang",
author_email="akahuang@google.com",
py_modules=["hammerd_api"],
scripts=["hammerd_api_demo.py", "hammer_info.py"],
description="The wrapper of hammerd API.",
)