# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from setuptools import setup, find_packages import sys desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)""" PACKAGE_NAME = "mozrunner" PACKAGE_VERSION = "3.0a" deps = ['mozprocess', 'mozprofile'] # we only support python 2 right now assert sys.version_info[0] == 2 setup(name=PACKAGE_NAME, version=PACKAGE_VERSION, description=desc, long_description=desc, author='Mikeal Rogers, Mozilla', author_email='mikeal.rogers@gmail.com', url='http://github.com/mozautomation/mozmill', license='MPL 1.1/GPL 2.0/LGPL 2.1', packages=find_packages(exclude=['legacy']), zip_safe=False, entry_points=""" [console_scripts] mozrunner = mozrunner:cli """, platforms =['Any'], install_requires = deps, classifiers=['Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules', ] )