1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/marionette/transport/setup.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +import os 1.5 +from setuptools import setup, find_packages 1.6 + 1.7 +version = '0.1' 1.8 + 1.9 +# get documentation from the README 1.10 +try: 1.11 + here = os.path.dirname(os.path.abspath(__file__)) 1.12 + description = file(os.path.join(here, 'README.md')).read() 1.13 +except (OSError, IOError): 1.14 + description = '' 1.15 + 1.16 +# dependencies 1.17 +deps = [] 1.18 + 1.19 +setup(name='marionette-transport', 1.20 + version=version, 1.21 + description="Transport layer for Marionette client", 1.22 + long_description=description, 1.23 + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 1.24 + keywords='mozilla', 1.25 + author='Mozilla Automation and Tools Team', 1.26 + author_email='tools@lists.mozilla.org', 1.27 + url='https://developer.mozilla.org/en-US/docs/Marionette', 1.28 + license='MPL', 1.29 + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 1.30 + package_data={}, 1.31 + include_package_data=False, 1.32 + zip_safe=False, 1.33 + entry_points=""" 1.34 + """, 1.35 + install_requires=deps, 1.36 + ) 1.37 +