Bug 1758984 - add status to mozlog crash so group summary is not marked as OK. r...
[gecko.git] / testing / condprofile / setup.py
blobb101ca98a33f4f737cfa6db853ce8a8f5a4ca02d
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
6 from setuptools import setup, find_packages
9 entry_points = """
10 [console_scripts]
11 cp-creator = condprof.main:main
12 cp-client = condprof.client:main
13 """
15 setup(
16 name="conditioned-profile",
17 version="0.2",
18 packages=find_packages(),
19 description="Firefox Heavy Profile creator",
20 include_package_data=True,
21 data_files=[
23 "condprof",
25 "condprof/customization/default.json",
26 "condprof/customization/youtube.json",
30 zip_safe=False,
31 install_requires=[], # use requirements files
32 entry_points=entry_points,