2012-09-07 20:00:31 +00:00
|
|
|
# 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
|
|
|
|
|
2013-04-17 18:08:02 +00:00
|
|
|
PACKAGE_VERSION = '0.22'
|
2012-09-07 20:00:31 +00:00
|
|
|
|
|
|
|
setup(name='mozdevice',
|
|
|
|
version=PACKAGE_VERSION,
|
|
|
|
description="Mozilla-authored device management",
|
2012-12-20 15:24:25 +00:00
|
|
|
long_description="see http://mozbase.readthedocs.org/",
|
2012-09-07 20:00:31 +00:00
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='',
|
|
|
|
author='Mozilla Automation and Testing Team',
|
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-03-22 04:06:28 +00:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2012-09-07 20:00:31 +00:00
|
|
|
license='MPL',
|
|
|
|
packages=['mozdevice'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2013-04-17 18:08:02 +00:00
|
|
|
install_requires=['mozlog'],
|
2012-09-07 20:00:31 +00:00
|
|
|
entry_points="""
|
|
|
|
# -*- Entry points: -*-
|
|
|
|
[console_scripts]
|
2012-10-12 17:24:35 +00:00
|
|
|
dm = mozdevice.dmcli:cli
|
2013-03-22 04:06:28 +00:00
|
|
|
sutini = mozdevice.sutini:main
|
2012-09-07 20:00:31 +00:00
|
|
|
""",
|
|
|
|
)
|