Files
python-aodhclient/setup.cfg
Yadnesh Kulkarni 5a8598c436 Fix CI jobs(py38, py310) and upload of wheels package to PyPi
According to PEP440[1] python wheel with a direct references
in their metadata cannot be uploaded to PyPi(public index server). Move "aodh-master" tarball url to tox.ini.

Since this project doesn't consume upper-constraints, the latest
releases of a few packages are being installed which breaks
"gnocchi upgrade" when running py38 and py310 jobs. Avoid this
by pinning sqlalchemy and oslo.db packages.

[1] https://peps.python.org/pep-0440/#direct-references

Change-Id: I6c10d87c572f9503484fcb02f6f0a0188c9454b3
2023-02-20 17:38:48 +00:00

63 lines
2.1 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]
;Disabled due to https://github.com/pypa/twine/issues/726
;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