xref: /aosp_15_r20/external/walt/pywalt/setup.py (revision bf47c6829f95be9dd55f4c5bbc44a71c90aad403)
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