diff -r 000000000000 -r 6474c204b198 testing/marionette/transport/setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/testing/marionette/transport/setup.py Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,34 @@ +import os +from setuptools import setup, find_packages + +version = '0.1' + +# get documentation from the README +try: + here = os.path.dirname(os.path.abspath(__file__)) + description = file(os.path.join(here, 'README.md')).read() +except (OSError, IOError): + description = '' + +# dependencies +deps = [] + +setup(name='marionette-transport', + version=version, + description="Transport layer for Marionette client", + long_description=description, + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + keywords='mozilla', + author='Mozilla Automation and Tools Team', + author_email='tools@lists.mozilla.org', + url='https://developer.mozilla.org/en-US/docs/Marionette', + license='MPL', + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + package_data={}, + include_package_data=False, + zip_safe=False, + entry_points=""" + """, + install_requires=deps, + ) +