~ubuntu-branches/ubuntu/vivid/unity-webapps-qml/vivid

« back to all changes in this revision

Viewing changes to tests/integration/autopilot/setup.py

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Alexandre Abreu
  • Date: 2014-07-18 17:40:27 UTC
  • mfrom: (1.1.35)
  • Revision ID: package-import@ubuntu.com-20140718174027-ib7s8vyk5gzpla4u
Tags: 0.1+14.10.20140718.1-0ubuntu1
[ Alexandre Abreu ]
Add bidirectional callback support between js <-> qml,

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
 
# Copyright 2013 Canonical
4
 
#
5
 
# This program is free software: you can redistribute it and/or modify it
6
 
# under the terms of the GNU General Public License version 3, as published
7
 
# by the Free Software Foundation.
8
 
 
9
 
 
10
 
from distutils.core import setup
11
 
from setuptools import find_packages
12
 
 
13
 
setup(
14
 
   name='unity-webapps-qml',
15
 
   version='0.1',
16
 
   description='Unity WebApps QML component autopilot tests.',
17
 
   url='https://launchpad.net/unity-webapps-qml',
18
 
   license='GPLv3',
19
 
   packages=find_packages(),
20
 
)