Files
oslotest/pyproject.toml
Stephen Finucane a1461c2cab Migrate setup configuration to pyproject.toml
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Change-Id: Ied90b69d1ace60436b2a912a76986971e5f0cd59
2025-09-12 11:02:10 +01:00

43 lines
1.2 KiB
TOML

[build-system]
requires = ["pbr>=6.1.1"]
build-backend = "pbr.build"
[project]
name = "oslotest"
description = "Oslo test framework"
readme = "README.rst"
authors = [
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
]
requires-python = ">=3.10"
dynamic = ["version", "dependencies"]
classifiers = [
"Environment :: OpenStack",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"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",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://docs.openstack.org/oslotest"
Repository = "https://opendev.org/openstack/oslotest"
[tool.setuptools]
packages = [
"oslotest"
]
script-files = [
"tools/oslo_debug_helper",
"tools/oslo_run_cross_tests",
"tools/oslo_run_pre_release_tests",
]