testing/marionette/transport/setup.py

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 import os
     2 from setuptools import setup, find_packages
     4 version = '0.1'
     6 # get documentation from the README
     7 try:
     8     here = os.path.dirname(os.path.abspath(__file__))
     9     description = file(os.path.join(here, 'README.md')).read()
    10 except (OSError, IOError):
    11     description = ''
    13 # dependencies
    14 deps = []
    16 setup(name='marionette-transport',
    17       version=version,
    18       description="Transport layer for Marionette client",
    19       long_description=description,
    20       classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
    21       keywords='mozilla',
    22       author='Mozilla Automation and Tools Team',
    23       author_email='tools@lists.mozilla.org',
    24       url='https://developer.mozilla.org/en-US/docs/Marionette',
    25       license='MPL',
    26       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
    27       package_data={},
    28       include_package_data=False,
    29       zip_safe=False,
    30       entry_points="""
    31       """,
    32       install_requires=deps,
    33       )

mercurial