blob: c0e2ba8efbade6ed8dc2365c4c319597cbb17640 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# 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
from setuptools import setup
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'],
description='The wrapper of hammerd API.',
)