-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
95 lines (82 loc) · 2.02 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover"
]
[tool.coverage.run]
omit = [
"*/.egg/*",
"*/.tox/*",
"*/build/*",
"*/dist/*",
"*/setup.py",
"*/tests/*"
]
[tool.isort]
force_sort_within_sections = false
known_first_party = "bugmon"
profile = "black"
[tool.mypy]
disallow_subclassing_any = "False"
ignore_missing_imports = "True"
implicit_reexport = "True"
strict = "True"
[tool.poetry]
authors = ["pyoor <pyoor@users.noreply.github.com>"]
description = "Bugmon Taskcluster Implementation"
license = "MPL-2.0"
name = "bugmon-tc"
packages = [{from = "src", include = "bugmon_tc"}]
version = "4.2.4"
[tool.poetry.dependencies]
bugmon = {git = "https://github.com/MozillaSecurity/bugmon.git"}
python = "^3.9.0"
taskcluster = ">=30.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
coverage = {extras = ["toml"], version = "^7.2.3"}
flake8 = "^6.1.0"
flake8-isort = "^6.1.1"
flake8-quotes = "^3.3.1"
freezegun = "^1.2.2"
gitlint = "^0.19.1"
mypy = "^1.7.0"
pre-commit = "^3.5.0"
pylint = "^3.0.2"
pytest = "^7.1.2"
pytest-black = "^0.3.8"
pytest-cov = "^4.1.0"
pytest-flake8 = "^1.1.1"
pytest-mock = "^3.0.0"
pytest-pylint = "^0.21.0"
python-semantic-release = "^9.19.1"
toml-sort = "^0.23.1"
types-requests = "^2.31.0.10"
[tool.poetry.scripts]
bugmon-monitor = 'bugmon_tc.monitor.cli:main'
bugmon-process = 'bugmon_tc.process.cli:main'
bugmon-report = 'bugmon_tc.report.cli:main'
[tool.pylint.format]
max-line-length = 88
[tool.pylint.messages_control]
disable = [
"duplicate-code",
"line-too-long",
"logging-fstring-interpolation",
"missing-module-docstring",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-positional-arguments"
]
[tool.pytest.ini_options]
log_level = "DEBUG"
[tool.semantic_relase.publish]
upload_to_vcs_release = false
[tool.semantic_release]
build_command = "poetry build"
commit_message = "chore(release): {version} [skip ci]"
version_toml = [
"pyproject.toml:tool.poetry.version"
]