Backed out changeset 076fc4bc773c (bug 925398) for Gu bustage on a CLOSED TREE.
[gecko.git] / testing / marionette / client / setup.py
blob8cb5c1891588828f21c0735a1d7de0b23a2019ea
1 import os
2 from setuptools import setup, find_packages
4 version = '0.6.2'
6 # get documentation from the README
7 try:
8 here = os.path.dirname(os.path.abspath(__file__))
9 description = file(os.path.join(here, 'README.md')).read()
10 except (OSError, IOError):
11 description = ''
13 # dependencies
14 deps = ['manifestdestiny', 'mozhttpd >= 0.5',
15 'mozprocess >= 0.9', 'mozrunner >= 5.15',
16 'mozdevice >= 0.22', 'moznetwork >= 0.21',
17 'mozcrash >= 0.5', 'mozprofile >= 0.7',
18 'moztest >= 0.1']
20 setup(name='marionette_client',
21 version=version,
22 description="Marionette test automation client",
23 long_description=description,
24 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
25 keywords='mozilla',
26 author='Jonathan Griffin',
27 author_email='jgriffin@mozilla.com',
28 url='https://wiki.mozilla.org/Auto-tools/Projects/Marionette',
29 license='MPL',
30 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
31 package_data={'marionette': ['touch/*.js']},
32 include_package_data=True,
33 zip_safe=False,
34 entry_points="""
35 # -*- Entry points: -*-
36 [console_scripts]
37 marionette = marionette.runtests:cli
38 """,
39 install_requires=deps,