python/mach/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
     3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     5 try:
     6     from setuptools import setup
     7 except:
     8     from distutils.core import setup
    11 VERSION = '0.3'
    13 README = open('README.rst').read()
    15 setup(
    16     name='mach',
    17     description='Generic command line command dispatching framework.',
    18     long_description=README,
    19     license='MPL 2.0',
    20     author='Gregory Szorc',
    21     author_email='gregory.szorc@gmail.com',
    22     url='https://developer.mozilla.org/en-US/docs/Developer_Guide/mach',
    23     packages=['mach'],
    24     version=VERSION,
    25     classifiers=[
    26         'Environment :: Console',
    27         'Development Status :: 3 - Alpha',
    28         'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
    29         'Natural Language :: English',
    30     ],
    31     install_requires=[
    32         'blessings',
    33         'mozfile',
    34         'mozprocess',
    35     ],
    36     tests_require=['mock'],
    37 )

mercurial