-
Notifications
You must be signed in to change notification settings - Fork 101
/
pyproject.toml
76 lines (69 loc) · 1.93 KB
/
pyproject.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# pyproject.toml
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4"]
[tool.setuptools_scm]
write_to = "mozregression/version.py"
[tool.black]
line-length = 100
# excludes handled in setup.cfg, since it's called via flake8
[tool.isort]
line_length = 100
skip_glob = "**/gui/mozregui/ui/*"
default_section = "THIRDPARTY"
known_first_party = "mozregression,mozregui"
known_third_party = "taskcluster"
# For compatibility with black:
multi_line_output = 3
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
[project]
name = "mozregression"
dynamic = ["version"]
description = "Regression range finder for Mozilla nightly builds"
readme = "README.md"
dependencies = [
"glean_sdk>=60.3.0",
"beautifulsoup4>=4.7.1",
"colorama>=0.4.1",
"configobj>=5.0.6",
"distro>=1.8.0",
"importlib_resources>= 5.10",
"mozdevice>=4.1.0,<5",
"mozfile>=2.0.0",
"mozinfo>=1.1.0",
"mozinstall>=2.0.0",
"mozlog>=4.0",
"mozprocess>=1.3.1",
"mozprofile>=2.2.0",
"mozrunner>=8.0.2",
"mozversion>=2.1.0",
"redo>=2.0.2",
"requests>=2.21.0",
"taskcluster>=6.0.0",
]
requires-python = ">= 3.8.1"
license = {text = "MPL 2.0"}
authors = [
{name = "Mozilla Automation and Tools Team", email = "[email protected]"}
]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[project.scripts]
mozregression = "mozregression.main:main"
[tool.setuptools]
packages = ["mozregression"]
platforms = ["Any"]
[tool.setuptools.package-data]
mozregression = ["*.yaml"]