testing/mozbase/mozdevice/setup.py

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:32fd51997deb
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/.
4
5 from setuptools import setup
6
7 PACKAGE_NAME = 'mozdevice'
8 PACKAGE_VERSION = '0.33'
9
10 deps = ['mozfile >= 1.0',
11 'mozlog',
12 'moznetwork >= 0.24'
13 ]
14
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 )

mercurial