aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: bdfdf8783098c5254404e02f3e1f80f3ec01aa72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python

# Copyright (c) 2010, 2011 Linaro
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from setuptools import setup, find_packages


setup(
    name='lava-android-test',
    version=":versiontools:lava_android_test:",
    author='Linaro Validation Team',
    author_email='linaro-dev@lists.linaro.org',
    url='https://launchpad.net/lava-android-test',
    description='LAVA android test execution framework',
    long_description=open("README").read(),
    packages=find_packages(exclude=['tests']),
    license="GNU GPLv3",
    test_suite='tests.test_suite',
    entry_points="""
    [console_scripts]
    lava-android-test=lava_android_test.main:main
    [lava_android_test.commands]
    version=lava_android_test.commands:version
    list-devices=lava_android_test.commands:list_devices
    list-tests=lava_android_test.commands:list_tests
    list-installed=lava_android_test.commands:list_installed
    list-results=lava_android_test.commands:list_results
    install=lava_android_test.commands:install
    uninstall=lava_android_test.commands:uninstall
    run=lava_android_test.commands:run
    run-custom=lava_android_test.commands:run_custom
    run-monkeyrunner=lava_android_test.commands:run_monkeyrunner
    parse=lava_android_test.commands:parse
    parse-custom=lava_android_test.commands:parse_custom
    show=lava_android_test.commands:show
    rename=lava_android_test.commands:rename
    remove=lava_android_test.commands:remove
    extract-attachments=lava_android_test.commands:extract_attachments
    """,
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU General Public License (GPL)",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 2.6",
        "Topic :: Software Development :: Testing",
    ],
    install_requires=[
        'lava-tool >= 0.2',
        'lava-dispatcher',
        'pexpect',
        'versiontools >= 1.4',
    ],
    setup_requires=[
        'versiontools >= 1.4'
    ],
    zip_safe=False,
    include_package_data=True)