2012-03-26 12:40:25 -07:00
|
|
|
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2013-07-08 19:55:42 -07:00
|
|
|
version = '0.5.35'
|
2012-03-26 12:40:25 -07:00
|
|
|
|
|
|
|
# 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
|
2013-04-30 10:01:14 -07:00
|
|
|
deps = ['manifestdestiny', 'mozhttpd >= 0.5',
|
|
|
|
'mozprocess >= 0.9', 'mozrunner >= 5.15',
|
|
|
|
'mozdevice >= 0.22', 'moznetwork >= 0.21',
|
|
|
|
'mozcrash >= 0.5', 'mozprofile >= 0.7']
|
2012-03-26 12:40:25 -07:00
|
|
|
|
2012-09-27 10:42:37 -07:00
|
|
|
setup(name='marionette_client',
|
2012-03-26 12:40:25 -07:00
|
|
|
version=version,
|
|
|
|
description="Marionette test automation client",
|
|
|
|
long_description=description,
|
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='mozilla',
|
|
|
|
author='Jonathan Griffin',
|
|
|
|
author_email='jgriffin@mozilla.com',
|
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Marionette',
|
|
|
|
license='MPL',
|
|
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
2012-11-15 16:07:48 -08:00
|
|
|
package_data={'marionette': ['touch/*.js']},
|
2012-03-26 12:40:25 -07:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2012-09-14 15:04:34 -07:00
|
|
|
entry_points="""
|
|
|
|
# -*- Entry points: -*-
|
|
|
|
[console_scripts]
|
|
|
|
marionette = marionette.runtests:cli
|
|
|
|
""",
|
2012-03-26 12:40:25 -07:00
|
|
|
install_requires=deps,
|
|
|
|
)
|
|
|
|
|