This repo is now testing only with Python 3, so let's make a few cleanups: - Remove python 2.7 stanza from setup.py - Remove obsolete sections from setup.cfg - Update classifiers - This repo has no docs, remove releasenotes and docs building infrastructure - Cleanup */source/conf.py to remove now obsolete content. - Remove install_command from tox.ini, the default is fine - Remove Babel from requirements, it's not needed for running. - Use TOX_CONSTRAINTS_FILE, UPPER_CONSTRAINTS_FILE is obsolete - Update to hacking 3.0, fix problems found Change-Id: I9133baec6cb123440f34b8c4b31001cfe875919e
61 lines
2.8 KiB
INI
61 lines
2.8 KiB
INI
[metadata]
|
|
name = python-adjutantclient
|
|
summary = Adjutant API Client Library
|
|
description-file =
|
|
README.rst
|
|
author = Adrian Turjak
|
|
author-email = adriant@catalyst.net.nz
|
|
home-page = https://github.com/openstack/python-adjutantclient
|
|
python-requires = >=3.6
|
|
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.6
|
|
Programming Language :: Python :: 3.7
|
|
|
|
[files]
|
|
packages =
|
|
adjutantclient
|
|
|
|
[entry_points]
|
|
openstack.cli.extension =
|
|
admin_logic = adjutantclient.osc.plugin
|
|
|
|
openstack.admin_logic.v1 =
|
|
admin_task_list = adjutantclient.osc.v1.tasks:TaskList
|
|
admin_task_show = adjutantclient.osc.v1.tasks:TaskShow
|
|
admin_task_approve = adjutantclient.osc.v1.tasks:TaskApprove
|
|
admin_task_cancel = adjutantclient.osc.v1.tasks:TaskCancel
|
|
admin_task_update = adjutantclient.osc.v1.tasks:TaskUpdate
|
|
admin_task_token_reissue = adjutantclient.osc.v1.tasks:TaskTokenReissue
|
|
admin_task_token_list = adjutantclient.osc.v1.tokens:TokenList
|
|
admin_task_token_show = adjutantclient.osc.v1.tokens:TokenShow
|
|
admin_task_token_submit = adjutantclient.osc.v1.tokens:TokenSubmit
|
|
admin_task_tokens_clear = adjutantclient.osc.v1.tokens:TokenClear
|
|
admin_task_notification_list = adjutantclient.osc.v1.notifications:NotificationList
|
|
admin_task_notification_show = adjutantclient.osc.v1.notifications:NotificationShow
|
|
admin_task_notification_acknowledge = adjutantclient.osc.v1.notifications:NotificationAcknowledge
|
|
project_user_list = adjutantclient.osc.v1.users:UserList
|
|
project_user_show = adjutantclient.osc.v1.users:UserShow
|
|
project_user_invite = adjutantclient.osc.v1.users:UserInvite
|
|
project_user_invite_cancel = adjutantclient.osc.v1.users:UserInviteCancel
|
|
project_user_role_list = adjutantclient.osc.v1.users:UserRoleList
|
|
project_user_role_add = adjutantclient.osc.v1.users:UserRoleAdd
|
|
project_user_role_remove = adjutantclient.osc.v1.users:UserRoleRemove
|
|
project_manageable_roles = adjutantclient.osc.v1.users:ManageableRolesList
|
|
project_quota_show = adjutantclient.osc.v1.quota:QuotaShow
|
|
project_quota_sizes = adjutantclient.osc.v1.quota:QuotaSizes
|
|
project_quota_tasks = adjutantclient.osc.v1.quota:QuotaTasks
|
|
project_quota_update = adjutantclient.osc.v1.quota:QuotaUpdate
|
|
password_forgot = adjutantclient.osc.v1.users:PasswordForgot
|
|
password_reset = adjutantclient.osc.v1.users:PasswordReset
|
|
signup = adjutantclient.osc.v1.signup:Signup
|
|
adjutant_status = adjutantclient.osc.v1.status:Status
|