Merge "Migrate setup configuration to pyproject.toml"
This commit is contained in:
@@ -1,3 +1,38 @@
|
||||
[build-system]
|
||||
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
|
||||
build-backend = "pbr.build"
|
||||
|
||||
[project]
|
||||
name = "ceilometermiddleware"
|
||||
description = "OpenStack Telemetry middleware for generating metrics"
|
||||
readme = "README.rst"
|
||||
authors = [
|
||||
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
|
||||
]
|
||||
requires-python = ">=3.10"
|
||||
dynamic = ["version", "dependencies"]
|
||||
classifiers = [
|
||||
"Environment :: OpenStack",
|
||||
"Intended Audience :: Information Technology",
|
||||
"Intended Audience :: System Administrators",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://docs.openstack.org/ceilometermiddleware"
|
||||
Repository = "https://opendev.org/openstack/ceilometermiddleware"
|
||||
|
||||
[project.entry-points."paste.filter_factory"]
|
||||
"swift" = "ceilometermiddleware.swift:filter_factory"
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["ceilometermiddleware"]
|
||||
|
||||
28
setup.cfg
28
setup.cfg
@@ -1,30 +1,2 @@
|
||||
[metadata]
|
||||
name = ceilometermiddleware
|
||||
summary = OpenStack Telemetry middleware for generating metrics
|
||||
description_file =
|
||||
README.rst
|
||||
author = OpenStack
|
||||
author_email = openstack-discuss@lists.openstack.org
|
||||
home_page = https://docs.openstack.org/ceilometermiddleware/latest/
|
||||
python_requires = >=3.10
|
||||
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 :: Implementation :: CPython
|
||||
Programming Language :: Python :: 3 :: Only
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.10
|
||||
Programming Language :: Python :: 3.11
|
||||
Programming Language :: Python :: 3.12
|
||||
|
||||
[files]
|
||||
packages =
|
||||
ceilometermiddleware
|
||||
|
||||
[entry_points]
|
||||
paste.filter_factory =
|
||||
swift = ceilometermiddleware.swift:filter_factory
|
||||
|
||||
Reference in New Issue
Block a user