michael@0: import os michael@0: from setuptools import setup, find_packages michael@0: michael@0: version = '0.1' michael@0: michael@0: # get documentation from the README michael@0: try: michael@0: here = os.path.dirname(os.path.abspath(__file__)) michael@0: description = file(os.path.join(here, 'README.md')).read() michael@0: except (OSError, IOError): michael@0: description = '' michael@0: michael@0: # dependencies michael@0: deps = [] michael@0: michael@0: setup(name='marionette-transport', michael@0: version=version, michael@0: description="Transport layer for Marionette client", michael@0: long_description=description, michael@0: classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers michael@0: keywords='mozilla', michael@0: author='Mozilla Automation and Tools Team', michael@0: author_email='tools@lists.mozilla.org', michael@0: url='https://developer.mozilla.org/en-US/docs/Marionette', michael@0: license='MPL', michael@0: packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), michael@0: package_data={}, michael@0: include_package_data=False, michael@0: zip_safe=False, michael@0: entry_points=""" michael@0: """, michael@0: install_requires=deps, michael@0: ) michael@0: