-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
35 lines (30 loc) · 957 Bytes
/
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
# Python package metadata file. This file replaces setup.py and other legacy
# files, and is based on the example here:
# https://github.com/pypa/sampleproject/blob/main/pyproject.toml
[project]
name = "appstudio-tools"
version = "0.1.0"
description = "Tools for Red Hat AppStudio"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["appstudio", "odcs", "rpm", "development"]
dependencies = [
"click",
"requests",
"pyyaml",
"odcs[client]",
"kubernetes",
]
[project.scripts]
odcs_compose_generator = "generate_compose.odcs_compose_generator:main"
odcs_ping = "generate_compose.odcs_ping:main"
rpm_verifier = "verify_rpms.rpm_verifier:main"
clean_spacerequests = "clean_spacerequests.spacerequests_cleaner:main"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.pylint]
load-plugins = ["pylint_pytest"]