getting started
This commit is contained in:
parent
a3571b5cf0
commit
11de63a43c
26
klugman/klugman.py
Normal file
26
klugman/klugman.py
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Copyright (c) 2014 Dark Secret Software Inc.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
# implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser(description='OpenStack.v3 Client.')
|
||||||
|
|
||||||
|
parser.add_argument('url', dest='url',
|
||||||
|
help='StackTach.v3 host url')
|
||||||
|
|
||||||
|
parser.add_argument('cmd', dest='cmd')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
29
setup.cfg
Normal file
29
setup.cfg
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
[metadata]
|
||||||
|
name = klugman
|
||||||
|
version = 0.1
|
||||||
|
author = Dark Secret Software Inc.
|
||||||
|
author-email = admin@darksecretsoftware.com
|
||||||
|
summary = StackTach.v3 Client
|
||||||
|
description-file = README.md
|
||||||
|
license = Apache-2
|
||||||
|
classifier =
|
||||||
|
Development Status :: 3 - Alpha
|
||||||
|
Environment :: Console
|
||||||
|
Intended Audience :: Developers
|
||||||
|
Intended Audience :: Information Technology
|
||||||
|
License :: OSI Approved :: Apache Software License
|
||||||
|
Operating System :: OS Independent
|
||||||
|
Programming Language :: Python
|
||||||
|
Topic :: Software Development :: Libraries :: Python Modules
|
||||||
|
home-page = https://github.com/StackTach/klugman
|
||||||
|
keywords =
|
||||||
|
stacktach
|
||||||
|
rest
|
||||||
|
api
|
||||||
|
client
|
||||||
|
klugman
|
||||||
|
quincy
|
||||||
|
openstack
|
||||||
|
[files]
|
||||||
|
packages =
|
||||||
|
klugman
|
8
setup.py
Normal file
8
setup.py
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
setup_requires=['pbr'],
|
||||||
|
pbr=True,
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user