blob: 65ce334ae0432ff4e5d4bc61c276ddede084b7fd [file] [log] [blame]
# -*- coding: utf-8 -*-
# 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', 'hammer_info.py'],
description='The wrapper of hammerd API.',
)