Bug 1107336: Create Marionette Driver containining all of the automation API code; r=jgriffin

--HG--
rename : testing/marionette/client/marionette/application_cache.py => testing/marionette/driver/marionette_driver/application_cache.py
rename : testing/marionette/client/marionette/by.py => testing/marionette/driver/marionette_driver/by.py
rename : testing/marionette/client/marionette/date_time_value.py => testing/marionette/driver/marionette_driver/date_time_value.py
rename : testing/marionette/client/marionette/decorators.py => testing/marionette/driver/marionette_driver/decorators.py
rename : testing/marionette/client/marionette/errors.py => testing/marionette/driver/marionette_driver/errors.py
rename : testing/marionette/client/marionette/expected.py => testing/marionette/driver/marionette_driver/expected.py
rename : testing/marionette/client/marionette/geckoinstance.py => testing/marionette/driver/marionette_driver/geckoinstance.py
rename : testing/marionette/client/marionette/gestures.py => testing/marionette/driver/marionette_driver/gestures.py
rename : testing/marionette/client/marionette/keys.py => testing/marionette/driver/marionette_driver/keys.py
rename : testing/marionette/client/marionette/marionette.py => testing/marionette/driver/marionette_driver/marionette.py
rename : testing/marionette/client/marionette/selection.py => testing/marionette/driver/marionette_driver/selection.py
rename : testing/marionette/client/marionette/wait.py => testing/marionette/driver/marionette_driver/wait.py
extra : rebase_source : b166f1ee32593ca320d41d6cfc07cf89b9eb2213
This commit is contained in:
David Burns 2015-02-23 15:31:00 +00:00
Родитель 1575e82f17
Коммит d24c715096
15 изменённых файлов: 36 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,8 @@
from marionette_driver import ( errors, by, decorators, expected, geckoinstance,
gestures, keys, marionette, selection, wait,
application_cache, date_time_value )
from marionette_driver.by import By
from marionette_driver.date_time_value import DateTimeValue
from marionette_driver.gestures import smooth_scroll, pinch
from marionette_driver.wait import Wait

Просмотреть файл

@ -0,0 +1 @@
marionette-transport == 0.4

Просмотреть файл

@ -0,0 +1,27 @@
import os
from setuptools import setup, find_packages
import sys
version = '0.1.0'
# dependencies
with open('requirements.txt') as f:
deps = f.read().splitlines()
setup(name='marionette_driver',
version=version,
description="Marionette Driver",
long_description='See http://marionette-driver.readthedocs.org/',
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='mozilla',
author='Auto-tools',
author_email='tools-marionette@lists.mozilla.org',
url='https://wiki.mozilla.org/Auto-tools/Projects/Marionette',
license='MPL',
packages=find_packages(),
#package_data={'marionette_driver': ['touch/*.js']},
include_package_data=True,
zip_safe=False,
install_requires=deps,
)