testing/mozbase/mozdevice/setup.py

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     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 file,
     3 # You can obtain one at http://mozilla.org/MPL/2.0/.
     5 from setuptools import setup
     7 PACKAGE_NAME = 'mozdevice'
     8 PACKAGE_VERSION = '0.33'
    10 deps = ['mozfile >= 1.0',
    11         'mozlog',
    12         'moznetwork >= 0.24'
    13        ]
    15 setup(name=PACKAGE_NAME,
    16       version=PACKAGE_VERSION,
    17       description="Mozilla-authored device management",
    18       long_description="see http://mozbase.readthedocs.org/",
    19       classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
    20       keywords='',
    21       author='Mozilla Automation and Testing Team',
    22       author_email='tools@lists.mozilla.org',
    23       url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
    24       license='MPL',
    25       packages=['mozdevice'],
    26       include_package_data=True,
    27       zip_safe=False,
    28       install_requires=deps,
    29       entry_points="""
    30       # -*- Entry points: -*-
    31       [console_scripts]
    32       dm = mozdevice.dmcli:cli
    33       sutini = mozdevice.sutini:main
    34       """,
    35       )

mercurial