tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

setup.py (909B)


      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/.
      4 
      5 from setuptools import find_packages, setup
      6 
      7 entry_points = """
      8      [console_scripts]
      9      cp-creator = condprof.main:main
     10      cp-client = condprof.client:main
     11      """
     12 
     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=[
     20        (
     21            "condprof",
     22            [
     23                "condprof/customization/default.json",
     24                "condprof/customization/youtube.json",
     25                "condprof/customization/webext.json",
     26            ],
     27        )
     28    ],
     29    zip_safe=False,
     30    install_requires=[],  # use requirements files
     31    entry_points=entry_points,
     32 )