python-aodhclient/setup.cfg
Emma Foley 02176deb25 Make tox.ini tox 4.0 compatible
* use min version 4.2.5, for fixes [1][2][3]
* passenv fixed as space-separated list is not allowed anymore
* dock target uses requirements from requirements.txt as well as
  doc/requirements.txt
* skipsdist is not supported
* whitelist_externals has been removed in favour of allowlist_externals

* reno was added to doc/requirements.txt to fix the releasenotes target
* update setup.cfg to install aodh from tarball in the requirements
  The tarball wasn't being installed when specified in tox.ini, and the
  [extras] section in setup.cfg needed updating to support installing
  from a URL

[1] https://github.com/tox-dev/tox/issues/2754
[2] https://github.com/tox-dev/tox/pull/2824
[3] https://github.com/tox-dev/tox/pull/2828

Change-Id: I4122d0d05f297f864318e80392e6c77fb2e9fdcf
2023-01-06 16:28:23 +00:00

62 lines
2.0 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
[files]
packages =
aodhclient
[options.extras_require]
test =
coverage>=3.6
oslotest>=1.10.0 # Apache-2.0
reno>=1.6.2 # Apache2
tempest>=10
stestr>=2.0.0 # Apache-2.0
testtools>=1.4.0
pifpaf[gnocchi]>=0.23
gnocchi[postgresql,file]
aodh @ https://tarballs.openstack.org/aodh/aodh-master.tar.gz#egg=aodh[mysql]
[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