forked from mozilla/mozregression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (56 loc) · 1.8 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
from setuptools import setup
# we pin these dependencies in the requirements files -- all of these
# should be python 3 compatible
DEPENDENCIES = [
"glean_sdk>=31.1.3",
"beautifulsoup4>=4.7.1",
"colorama>=0.4.1",
"configobj>=5.0.6",
"mozdevice>=4.0.0,<5",
"mozfile>=2.0.0",
"mozinfo>=1.1.0",
"mozinstall>=2.0.0",
"mozlog>=4.0",
"mozprocess>=1.2.0",
"mozprofile>=2.2.0",
"mozrunner>=8.0.2",
"mozversion>=2.1.0",
"redo>=2.0.2",
"requests>=2.21.0",
"taskcluster>=6.0.0",
]
desc = """Regression range finder for Mozilla nightly builds"""
long_desc = """Regression range finder for Mozilla nightly builds.
For more information see the mozregression website:
http://mozilla.github.io/mozregression/"""
setup(
name="mozregression",
use_scm_version=True,
description=desc,
long_description=long_desc,
author="Mozilla Automation and Tools Team",
author_email="[email protected]",
url="http://github.com/mozilla/mozregression",
license="MPL 2.0",
packages=["mozregression"],
entry_points="""
[console_scripts]
mozregression = mozregression.main:main
""",
package_data={"mozregression": ["*.yaml"]},
platforms=["Any"],
python_requires=">=3.7",
setup_requires=["setuptools_scm"],
install_requires=DEPENDENCIES,
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
)