Bug 1568126 - Part 1: Use the contextual WalkerFront in _hideHighlighterIfDeadNode...
[gecko.git] / testing / tps / setup.py
blob09c489927ce427b50887ada2e0cb07eec03ddba6
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from __future__ import absolute_import
7 from setuptools import setup, find_packages
8 import sys
10 version = '0.6'
12 deps = ['httplib2 == 0.9.2',
13 'mozfile >= 1.2',
14 'mozhttpd == 0.7',
15 'mozinfo >= 0.10',
16 'mozinstall == 1.16',
17 'mozprocess == 0.26',
18 'mozprofile ~= 2.1',
19 'mozrunner ~= 7.2',
20 'mozversion == 1.5',
21 'PyYAML >= 4.0',
24 # we only support python 2.6+ right now
25 assert sys.version_info[0] == 2
26 assert sys.version_info[1] >= 6
28 setup(name='tps',
29 version=version,
30 description='run automated multi-profile sync tests',
31 long_description="""\
32 """,
33 classifiers=['Programming Language :: Python :: 2.7',
34 'Programming Language :: Python :: 2 :: Only',
35 ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
36 keywords='',
37 author='Mozilla Automation and Tools team',
38 author_email='tools@lists.mozilla.org',
39 url='https://developer.mozilla.org/en-US/docs/TPS',
40 license='MPL 2.0',
41 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
42 include_package_data=True,
43 zip_safe=False,
44 install_requires=deps,
45 entry_points="""
46 # -*- Entry points: -*-
47 [console_scripts]
48 runtps = tps.cli:main
49 """,
50 data_files=[
51 ('tps', ['config/config.json.in']),