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
9 cp-creator = condprof.main:main
10 cp-client = condprof.client:main
14 name
="conditioned-profile",
16 packages
=find_packages(),
17 description
="Firefox Heavy Profile creator",
18 include_package_data
=True,
23 "condprof/customization/default.json",
24 "condprof/customization/youtube.json",
25 "condprof/customization/webext.json",
30 install_requires
=[], # use requirements files
31 entry_points
=entry_points
,