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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
[tool.poetry]
name = "kiwi"
version = "10.2.33"
description = "KIWI - Appliance Builder"
license = "GPL-3.0-or-later"
readme = "README.rst"
homepage = "https://osinside.github.io/kiwi/"
documentation = "https://osinside.github.io/kiwi/"
repository = "https://github.com/OSInside/kiwi"
authors = [
"Marcus Schäfer <marcus.schaefer@suse.com>",
]
maintainers = [
"Marcus Schäfer <marcus.schaefer@suse.com>",
"David Cassany Viladomat <dcassany@suse.com>",
"Neal Gompa <neal@gompa.dev>",
"Dan Čermák <dcermak@suse.com>",
]
packages = [
{ include = "kiwi"},
]
include = [
{ path = ".bumpversion.cfg", format = "sdist" },
{ path = ".coverage*", format = "sdist" },
{ path = "setup.cfg", format = "sdist" },
{ path = "doc/source", format = "sdist" },
{ path = "doc/Makefile", format = "sdist" },
{ path = "dracut", format = "sdist" },
{ path = "helper", format = "sdist" },
{ path = "kiwi.yml", format = "sdist" },
{ path = "build-tests.sh", format = "sdist" },
{ path = "Makefile", format = "sdist" },
{ path = "package", format = "sdist" },
{ path = "test", format = "sdist" },
{ path = "kiwi/runtime_checker_metadata.yml", format = "sdist" },
]
classifiers = [
# classifier: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Operating System",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/OSInside/kiwi/issues"
[tool.poetry.dependencies]
python = "^3.9"
docopt-ng = ">=0.9.0"
lxml = ">=4.6.0"
requests = ">=2.25.0"
PyYAML = ">=5.4.0"
simplejson = ">=3.17.0"
# Optional dependencies for markup extra
anymarkup-core = { version = ">=0.8.0", optional = true }
xmltodict = { version = ">=0.12.0", optional = true }
toml = { version = "*", optional = true }
[tool.poetry.extras]
markup = [ "anymarkup-core", "xmltodict" , "toml" ]
integration_tests = ["pytest-container"]
[tool.poetry.plugins]
[tool.poetry.plugins."kiwi.tasks"]
image_info = "kiwi.tasks.image_info"
image_resize = "kiwi.tasks.image_resize"
result_bundle = "kiwi.tasks.result_bundle"
result_list = "kiwi.tasks.result_list"
system_build = "kiwi.tasks.system_build"
system_create = "kiwi.tasks.system_create"
system_prepare = "kiwi.tasks.system_prepare"
system_update = "kiwi.tasks.system_update"
[tool.poetry.scripts]
kiwi-ng = "kiwi.kiwi:main"
[tool.poetry.group.test]
[tool.poetry.group.test.dependencies]
# python unit testing framework
pytest = ">=6.2.0"
pytest-cov = "*"
pytest-xdist = "*"
# Optional dependencies for shell functions integration tests
pytest-container = {version = "*", optional = true}
# type checking
mypy = ">=0.971"
types-requests = "*"
types-PyYAML = "*"
types-mock = "*"
types-simplejson = "*"
[tool.poetry.group.style]
[tool.poetry.group.style.dependencies]
flake8 = ">=4.0.0"
[tool.poetry.group.docs]
[tool.poetry.group.docs.dependencies]
sphinx = ">=5.0.0"
sphinx_rtd_theme = "*"
sphinxcontrib-spelling = "*"
pyenchant = "*"
ghp-import = "*"
[tool.poetry.group.development]
[tool.poetry.group.development.dependencies]
python-dateutil = "*"
generateDS = "==2.29.24"
bumpversion = "*"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
|