2020-11-17 02:06:54 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2022-12-21 14:38:37 +00:00
|
|
|
from setuptools import find_packages, setup
|
2019-09-16 19:44:35 +00:00
|
|
|
|
2021-06-16 16:33:20 +00:00
|
|
|
entry_points = """
|
2019-09-16 19:44:35 +00:00
|
|
|
[console_scripts]
|
2020-03-05 10:27:05 +00:00
|
|
|
cp-creator = condprof.main:main
|
2019-09-16 19:44:35 +00:00
|
|
|
cp-client = condprof.client:main
|
|
|
|
"""
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="conditioned-profile",
|
2019-11-12 19:47:40 +00:00
|
|
|
version="0.2",
|
2019-09-16 19:44:35 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
description="Firefox Heavy Profile creator",
|
|
|
|
include_package_data=True,
|
2021-06-30 13:35:35 +00:00
|
|
|
data_files=[
|
|
|
|
(
|
|
|
|
"condprof",
|
|
|
|
[
|
|
|
|
"condprof/customization/default.json",
|
|
|
|
"condprof/customization/youtube.json",
|
2023-12-06 20:27:40 +00:00
|
|
|
"condprof/customization/webext.json",
|
2021-06-30 13:35:35 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
],
|
2019-09-16 19:44:35 +00:00
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[], # use requirements files
|
|
|
|
entry_points=entry_points,
|
|
|
|
)
|