python-aodhclient/setup.cfg
Takashi Kajinami 766d130b18 Use global upper-constraints
python-aodhclient decided *not* to use global upper constraints but
this introduced frequent problems in the past mainly because of
conflict between global upper vs local upper.

Given the fact that aodh itself is using the global constraints,
switching aodhclient to use global constraints allows much easier
maintenance now.

Change-Id: I93474bd3b8198110425e6ba0036fbb3dac1f1f84
2024-05-02 23:42:17 +09:00

52 lines
1.8 KiB
INI

[metadata]
name = aodhclient
summary = Python client library for Aodh
description_file =
README.rst
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://docs.openstack.org/python-aodhclient/latest/
python_requires = >=3.8
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 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[files]
packages =
aodhclient
[entry_points]
console_scripts =
aodh = aodhclient.shell:main
keystoneauth1.plugin =
aodh-noauth = aodhclient.noauth:AodhNoAuthLoader
openstack.cli.extension =
metric = aodhclient.osc
openstack.alarming.v2 =
alarm create = aodhclient.v2.alarm_cli:CliAlarmCreate
alarm list = aodhclient.v2.alarm_cli:CliAlarmList
alarm show = aodhclient.v2.alarm_cli:CliAlarmShow
alarm delete = aodhclient.v2.alarm_cli:CliAlarmDelete
alarm update = aodhclient.v2.alarm_cli:CliAlarmUpdate
alarm state get = aodhclient.v2.alarm_cli:CliAlarmStateGet
alarm state set = aodhclient.v2.alarm_cli:CliAlarmStateSet
alarm-history search = aodhclient.v2.alarm_history_cli:CliAlarmHistorySearch
alarm-history show = aodhclient.v2.alarm_history_cli:CliAlarmHistoryShow
alarming capabilities list = aodhclient.v2.capabilities_cli:CliCapabilitiesList
alarm quota show = aodhclient.v2.quota_cli:QuotaShow
alarm quota set = aodhclient.v2.quota_cli:QuotaSet