mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
ad27b9171b
--HG-- extra : rebase_source : 2dbc7e301e2e56d5640d703f4bc01da685ff7739
30 lines
967 B
Python
30 lines
967 B
Python
from setuptools import setup, find_packages
|
|
|
|
version = '0.9.2'
|
|
|
|
# dependencies
|
|
with open('requirements.txt') as f:
|
|
deps = f.read().splitlines()
|
|
|
|
setup(name='marionette_client',
|
|
version=version,
|
|
description="Marionette test automation client",
|
|
long_description='See http://marionette-client.readthedocs.org/',
|
|
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']),
|
|
package_data={'marionette': ['touch/*.js']},
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
entry_points="""
|
|
# -*- Entry points: -*-
|
|
[console_scripts]
|
|
marionette = marionette.runtests:cli
|
|
""",
|
|
install_requires=deps,
|
|
)
|