Migrate setup configuration to pyproject.toml
Change-Id: Id2d88993016e7a21473c7cadb1fe04fffa3b0d87 Co-authored-by: Stephen Finucane <stephenfin@redhat.com> Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
This commit is contained in:
co-authored by
Stephen Finucane
parent
fee48c7ba8
commit
26cf38ed3c
@@ -0,0 +1,35 @@
|
||||
[build-system]
|
||||
requires = ["pbr>=6.1.1"]
|
||||
build-backend = "pbr.build"
|
||||
|
||||
[project]
|
||||
name = "blazar_tempest_plugin"
|
||||
description = "Tempest plugin 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.10"
|
||||
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.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Repository = "https://opendev.org/openstack/blazar-tempest-plugin"
|
||||
|
||||
[project.entry-points."tempest.test_plugins"]
|
||||
blazar_tests = "blazar_tempest_plugin.plugin:BlazarTempestPlugin"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
include = ["blazar_tempest_plugin"]
|
||||
@@ -1,28 +1,2 @@
|
||||
[metadata]
|
||||
name = blazar_tempest_plugin
|
||||
summary = Tempest plugin for Blazar Project
|
||||
description_file =
|
||||
README.rst
|
||||
author = OpenStack
|
||||
author_email = openstack-discuss@lists.openstack.org
|
||||
home_page = https://docs.openstack.org/blazar/latest/
|
||||
classifier =
|
||||
Environment :: OpenStack
|
||||
Intended Audience :: Information Technology
|
||||
Intended Audience :: System Administrators
|
||||
License :: OSI Approved :: Apache Software License
|
||||
Operating System :: POSIX :: Linux
|
||||
Programming Language :: Python
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.10
|
||||
Programming Language :: Python :: 3.11
|
||||
Programming Language :: Python :: 3.12
|
||||
Programming Language :: Python :: 3.13
|
||||
|
||||
[files]
|
||||
packages =
|
||||
blazar_tempest_plugin
|
||||
|
||||
[entry_points]
|
||||
tempest.test_plugins =
|
||||
blazar_tests = blazar_tempest_plugin.plugin:BlazarTempestPlugin
|
||||
|
||||
Reference in New Issue
Block a user