Add the oslo.config entry point so that these options can be discovered by oslo-config-generator. Add a simple tox env to generate a sample config file with the available options. This file may be placed in /etc/nova/conf.d to inject these options into the nova services. Change-Id: I05b564418f3b9334e6a8033b52f165b8bab2eabf Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["pbr>=6.1.1"]
|
|
build-backend = "pbr.build"
|
|
|
|
[project]
|
|
name = "blazar-nova"
|
|
description = "Nova related filters and extensions for Blazar"
|
|
authors = [
|
|
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
|
|
]
|
|
readme = {file = "README.rst", content-type = "text/x-rst"}
|
|
license = "Apache-2.0"
|
|
dynamic = ["version", "dependencies"]
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Environment :: OpenStack",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://opendev.org/openstack/blazar-nova"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["blazarnova*"]
|
|
|
|
[project.entry-points."oslo.config.opts"]
|
|
"blazarnova" = "blazarnova._opts:list_opts"
|
|
|