no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / testing / condprofile / setup.py
blob0648bff23243c5f0a9f4fd231e0c669c97b3f99f
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 find_packages, setup
7 entry_points = """
8 [console_scripts]
9 cp-creator = condprof.main:main
10 cp-client = condprof.client:main
11 """
13 setup(
14 name="conditioned-profile",
15 version="0.2",
16 packages=find_packages(),
17 description="Firefox Heavy Profile creator",
18 include_package_data=True,
19 data_files=[
21 "condprof",
23 "condprof/customization/default.json",
24 "condprof/customization/youtube.json",
25 "condprof/customization/webext.json",
29 zip_safe=False,
30 install_requires=[], # use requirements files
31 entry_points=entry_points,