~sergiusens/phablet-tools/click_test_provision

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python

from setuptools import find_packages
from setuptools import setup

setup(
    name='phablet-tools',
    version='0.1',
    description='Scripts to deploy Ubuntu on mobile devices',
    author='Sergio Schvezov',
    author_email='sergio.schvezov@canonical.com',
    license='GPLv3',
    packages=find_packages(exclude=("tests",)),
    scripts=['phablet-flash',
             'phablet-click-test-setup',
             'phablet-demo-setup',
             'phablet-network-setup',
             'phablet-dev-bootstrap',
             'phablet-test-run',
             'repo',
             ],
    test_suite='tests',
)