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 setuptools
import setup
, find_packages
10 deps
= ['httplib2 == 0.7.3',
21 # we only support python 2.6+ right now
22 assert sys
.version_info
[0] == 2
23 assert sys
.version_info
[1] >= 6
27 description
='run automated multi-profile sync tests',
30 classifiers
=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
32 author
='Mozilla Automation and Tools team',
33 author_email
='tools@lists.mozilla.org',
34 url
='https://developer.mozilla.org/en-US/docs/TPS',
36 packages
=find_packages(exclude
=['ez_setup', 'examples', 'tests']),
37 include_package_data
=True,
39 install_requires
=deps
,
41 # -*- Entry points: -*-
46 ('tps', ['config/config.json.in']),