Files
python-fuelclient/setup.cfg
Roman Prykhodchenko b223dcaf5f Add task command
This patch adds the task command which allows to perform
the following operations on tasks in Fuel:

 - List tasks
   task list
 - Show details about a task
   task show

Blueprint: re-thinking-fuel-client
Change-Id: I3994ddc52f7454114b81ba9aa1ee22e6225fe477
2015-03-19 15:30:22 +01:00

51 lines
1.5 KiB
INI

[metadata]
name = python-fuelclient
version = 6.0.0
summary = Command line interface and Python API wrapper for Fuel.
author = Mirantis Inc.
author-email = product@mirantis.com
home-page = http://mirantis.com
description-file =
README.rst
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 :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
[files]
packages =
fuelclient
[entry_points]
console_scripts =
fuel=fuelclient.cli.parser:main
fuel2=fuelclient.main:main
fuelclient =
env_list=fuelclient.commands.environment:EnvList
env_create=fuelclient.commands.environment:EnvCreate
env_show=fuelclient.commands.environment:EnvShow
env_delete=fuelclient.commands.environment:EnvDelete
env_update=fuelclient.commands.environment:EnvUpdate
env_upgrade=fuelclient.commands.environment:EnvUpgrade
env_deploy=fuelclient.commands.environment:EnvDeploy
env_add_nodes=fuelclient.commands.environment:EnvAddNodes
node_list=fuelclient.commands.node:NodeList
node_show=fuelclient.commands.node:NodeShow
task_list=fuelclient.commands.task:TaskList
task_show=fuelclient.commands.task:TaskShow
[global]
setup-hooks =
pbr.hooks.setup_hook
fuelclient.hooks.setup_hook
[wheel]
universal = 1