d679696ec0
-Added cli folder -Utilizes click to process commands -commands can be found at https://github.com/att-comdev/shipyard/blob/master/docs/CLI.md -also, running the command 'shipyard' will give you a brief description of the commands available -Contains actions.py that calls Client API -Added tests folder -Unit tests for commands -Negative unit tests are also included for commands -Unit tests for actions Change-Id: Ie3e4d1f18aa935a311f332fba5c8a4d239183469
38 lines
1017 B
INI
38 lines
1017 B
INI
[metadata]
|
|
name = shipyard
|
|
summary = Directed acyclic graph controller for Kubernetes and OpenStack control plane life cycle management
|
|
description-file = README.md
|
|
|
|
author = undercloud team
|
|
home-page = https://github.com/att-comdev/shipyard
|
|
classifier =
|
|
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
|
|
Programming Language :: Python :: 3.5
|
|
|
|
[files]
|
|
packages =
|
|
shipyard_airflow
|
|
shipyard_client
|
|
|
|
[entry_points]
|
|
oslo.config.opts =
|
|
shipyard_airflow = shipyard_airflow.conf.opts:list_opts
|
|
oslo.policy.policies =
|
|
shipyard_airflow = shipyard_airflow.policy:list_policies
|
|
console_scripts =
|
|
shipyard = shipyard_client.cli.commands:shipyard
|
|
|
|
[build_sphinx]
|
|
source-dir = docs/source
|
|
build-dir = docs/build
|
|
all_files = 1
|
|
warning-is-error = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = docs/build/html
|