Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 # You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import setup
7 PACKAGE_NAME = 'mozdevice'
8 PACKAGE_VERSION = '0.33'
10 deps = ['mozfile >= 1.0',
11 'mozlog',
12 'moznetwork >= 0.24'
13 ]
15 setup(name=PACKAGE_NAME,
16 version=PACKAGE_VERSION,
17 description="Mozilla-authored device management",
18 long_description="see http://mozbase.readthedocs.org/",
19 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
20 keywords='',
21 author='Mozilla Automation and Testing Team',
22 author_email='tools@lists.mozilla.org',
23 url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
24 license='MPL',
25 packages=['mozdevice'],
26 include_package_data=True,
27 zip_safe=False,
28 install_requires=deps,
29 entry_points="""
30 # -*- Entry points: -*-
31 [console_scripts]
32 dm = mozdevice.dmcli:cli
33 sutini = mozdevice.sutini:main
34 """,
35 )