testing/marionette/transport/setup.py

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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

mercurial