blob: 029b26e1d6a9e8171f2c23b3cf15dcdedb7e7871 [file] [log] [blame]
Ang Li73697b32015-12-03 00:41:53 +00001#!/usr/bin/python3.4
2
3from setuptools import setup
4from setuptools import find_packages
5
6setup(
7 name='acts',
8 version = '0.9',
9 description = 'Android Comms Test Suite',
10 license = 'Apache2.0',
11 packages = find_packages(),
12 include_package_data = False,
13 install_requires = [
14 'pyserial',
15 ],
16 scripts = ['acts/act.py','acts/monsoon.py'],
17 url = "http://www.android.com/"
18)