-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.37 KB
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
[tool.poetry]
name = "ubi-population-tool"
version = "0.19.1"
description = "Tool for populating ubi repositories"
license = "GPL-3.0-or-later"
readme = "README.md"
authors = []
repository = "https://github.com/release-engineering/ubi-population-tool"
documentation = "https://release-engineering.github.io/ubi-population-tool"
packages = [{include = "ubipop"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.scripts]
ubipop = "ubipop.cli:entry_point"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
more-executors = "*"
ubi-config = "*"
pubtools-pulplib = "*"
attrs = "*"
requests-gssapi = "*"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "*"
mock = "*"
requests-mock = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "25.1.0"
mypy = "1.19.1"
pylint = "==3.3.9"
pytest-cov = "7.1.0"
bandit = "1.8.6"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
alabaster = "*"