-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (48 loc) · 1.19 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
[project]
name = "reps-new"
version = "0.3.6"
description = "Mozilla Release Engineering Project Standard"
requires-python = ">=3.8"
authors = [
{ name = "Mozilla Release Engineering", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: System :: Installation/Setup",
]
readme = "README.md"
dependencies = [
"cookiecutter >=2.6.0, <3",
"pre-commit >=3.5.0, <4",
"pip-tools >=7.4.0, <8",
"halo >=0.0.31, <1",
"ruamel-yaml >=0.18.6, <1",
]
[project.urls]
Repository = "https://github.com/mozilla-releng/reps"
Issues = "https://github.com/mozilla-releng/reps/issues"
[project.scripts]
reps-new = "reps.console:run"
[tool.uv]
dev-dependencies = [
"coverage[toml] ~= 7.2",
"pyright ~= 1.1",
"pytest ~= 7.4",
"requests ~= 2.31",
"tox ~= 4.6",
]
[tool.hatch.build.targets.wheel]
packages = ["reps"]
[tool.coverage.run]
omit = ["reps/templates/*"]
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.ruff]
extend-exclude = ["reps/templates"]
[tool.pyright]
include = ["reps"]
ignore = ["reps/templates"]
reportUnknownParameterType = "error"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"