-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
60 lines (54 loc) · 1.35 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
[tool.poetry]
name = "bci-dockerfile-generator"
version = "0.1.0"
description = "Generator script for the Dockerfiles for the SLE BCI"
authors = ["Dan Čermák <[email protected]>"]
license = "GPL-3.0-or-later"
packages = [
{ include = "bci_build", from = "src" },
{ include = "staging", from = "src" },
{ include = "dotnet", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
Jinja2 = ">=3.1"
aiohttp = ">=3.9.0"
rpm-vercmp = ">=0.1"
aiofiles = ">=22.1"
obs-package-update = { git = "https://github.com/dcermak/obs-package-update", branch = "main" }
py-obs = { git = "https://github.com/dcermak/py-obs", branch = "main" }
GitPython = ">=3.1"
oras = ">=0.2.2"
[tool.poetry.scripts]
package = "bci_build.package:main"
scratch-build-bot = "staging.bot:main"
update-versions = "bci_build.package.versions:run_version_update"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.1.14"
Sphinx = ">=4.4"
pytest = ">=7.1"
types-aiofiles = ">=22.1"
pytest-asyncio = ">=0.20, != 0.22.0"
pyyaml = ">=6.0"
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I"
]
ignore = [
# too long lines…
"E501"
]
[tool.ruff]
src = ["src", "tests", "source"]
[tool.ruff.lint.isort]
force-single-line = true
case-sensitive = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"