This command parses the log output of running osc-batch-submit's output script and allows to track the status of the SRs
27 lines
632 B
TOML
27 lines
632 B
TOML
[project]
|
|
name = "osc-batch-submit"
|
|
description = "Tool to create batch commands for osc"
|
|
requires-python = ">=3.7"
|
|
version = "0.1"
|
|
authors = [
|
|
{name = "Antonio Larrosa", email = "alarrosa@suse.com"},
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
]
|
|
license = {text = "GPL-3.0"}
|
|
dependencies = [
|
|
"packaging",
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=62.4.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project.scripts]
|
|
osc-batch-submit = "osc_batch_submit.main:main"
|
|
list-srs = "osc_batch_submit.list_srs:main"
|