testing/marionette/transport/setup.py

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     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