-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
61 lines (50 loc) · 1.28 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
[tool.poetry]
name = "pyaptly"
version = "2.0.0"
description = "Automates the creation and managment of aptly mirrors and snapshots based on toml input files."
authors = ["Jean-Louis Fuchs <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
[tool.mypy]
check_untyped_defs = true
[tool.poetry.scripts]
pyaptly = 'pyaptly.cli:entry_point'
[tool.coverage.report]
fail_under = 100
exclude_lines = [
"pragma: no cover",
"pragma: todo cover",
"@pytest.mark.skip",
]
omit = []
show_missing = true
[tool.poetry.dependencies]
python = "^3.11"
pyyaml = "^6.0.1"
click = "^8.0.0"
tomli = "^2.0.1"
colorama = "^0.4.6"
frozendict = "^2.2.0"
[tool.poetry.group.dev.dependencies]
freezegun = "^1.2.2"
hypothesis = "^6.87.1"
testfixtures = "^7.2.0"
mock = "^5.1.0"
pytest = "^7.4.3"
mypy = "^1.7.1"
pdbpp = "^0.10.3"
types-toml = "^0.10.8.7"
types-pyyaml = "^6.0.12.12"
pytest-coverage = "^0.0"
pyp2rpm = "3.3.10"
types-colorama = "^0.4.15.20240311"
ruff = "^0.3.2"
[tool.poetry.group.lsp.dependencies]
python-lsp-server = "^1.9.0"
python-lsp-ruff = "^2.2.0"
# TODO: remove this as soon as most people have converted their config.
[tool.coverage.run]
omit = ["pyaptly/tomli_w/_writer.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"