1#!/usr/bin/env python
2
3from setuptools import setup, find_packages
4
5setup(
6    name='pywalt',
7    entry_points={
8        'console_scripts': (
9            'walt = pywalt.walt:main',
10        ),
11    },
12    install_requires=['pyserial'],
13    packages=find_packages(),
14    description='WALT Latency Timer',
15    license='Apache 2.0',
16    url='https://github.com/google/walt',
17)
18