mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
32 lines
948 B
Python
32 lines
948 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
version = '0.2'
|
|
|
|
# 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 = ['manifestdestiny', 'mozhttpd >= 0.3', 'mozprocess']
|
|
|
|
setup(name='marionette',
|
|
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']),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=deps,
|
|
)
|
|
|