This repository has been archived by the owner on Aug 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
59 lines (54 loc) · 2.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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/.
import os
from setuptools import setup, find_packages
try:
here = os.path.dirname(os.path.abspath(__file__))
description = file(os.path.join(here, 'README.md')).read()
except IOError:
description = None
NAME = 'mozmill-automation'
VERSION = '2.1-dev'
deps = ['mercurial == 2.6.2',
'mozdownload >= 1.13',
'mozfile >= 1.0',
'mozinfo >= 0.7',
'mozinstall >= 1.11',
'mozlog >= 2.9',
'mozmill == 2.1-dev',
'mozversion >= 0.7',
]
setup(name=NAME,
version=VERSION,
description="Automation scripts for Mozmill test execution",
long_description=description,
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='mozilla',
author='Mozilla Automation and Tools team',
author_email='[email protected]',
url='https://github.com/mozilla/mozmill-automation',
license='MPL 2.0',
packages=find_packages(exclude=['legacy']),
include_package_data=True,
zip_safe=False,
install_requires=deps,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
testrun_addons = mozmill_automation:addons_cli
testrun_endurance = mozmill_automation:endurance_cli
testrun_functional = mozmill_automation:functional_cli
testrun_l10n = mozmill_automation:l10n_cli
testrun_remote = mozmill_automation:remote_cli
testrun_update = mozmill_automation:update_cli
""",
)