forked from mozilla/mozregression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.61 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
import os
from setuptools import setup
desc = """Regression range finder for Mozilla nightly builds"""
long_desc = """Interactive regression range finder for Mozilla nightly builds.
For more information see the mozregression website: http://mozilla.github.io/mozregression/"""
setup(name="mozregression",
version="0.21",
description=desc,
long_description=long_desc,
author='Mozilla Automation and Tools Team',
author_email='tools@lists.mozilla.org',
url='http://github.com/mozilla/mozregression',
license='MPL 1.1/GPL 2.0/LGPL 2.1',
packages=['mozregression'],
entry_points="""
[console_scripts]
mozregression = mozregression.regression:cli
moznightly = mozregression.runnightly:cli
""",
platforms =['Any'],
install_requires = ['httplib2 >= 0.6.0',
'mozcommitbuilder >= 0.4.10',
'mozfile >= 0.1',
'mozprofile >= 0.4',
'mozrunner >= 5.14',
'BeautifulSoup >= 3.0.4',
'mozinstall >= 1.4',
'mozinfo >= 0.4',
'mozversion >= 0.5',
'requests >= 2.1',
'futures >= 2.1.6',
],
tests_require=['mock'],
test_suite='tests',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
]
)