Add tuskar_boxes plugin and clean up setup.cfg

Clean up requirements and setup.cfg
Add a placeholder for the tuskar_boxes plugin

Change-Id: I4cbf050f700cb7a4732e08128e280f18066a3a05
This commit is contained in:
Radomir Dopieralski 2014-10-01 11:44:32 +02:00
parent 8f04e9c62a
commit b870ca895d
4 changed files with 32 additions and 22 deletions

View File

@ -1,21 +1,3 @@
pbr>=0.6,!=0.7,<1.0
# Horizon Core Requirements
django>=1.4,<1.6
django_compressor>=1.3
django_openstack_auth>=1.1.3
eventlet>=0.13.0
kombu>=2.4.8
iso8601>=0.1.8
netaddr>=0.7.6
python-cinderclient>=1.0.6
python-glanceclient>=0.9.0
python-heatclient>=0.2.3
python-keystoneclient>=0.4.1
python-novaclient>=2.15.0
python-neutronclient>=2.3.0,<3
python-swiftclient>=1.5
python-ceilometerclient>=1.0.6
pytz>=2010h
# Horizon Utility Requirements
# for SECURE_KEY generation
lockfile>=0.8
horizon
tuskar-ui

View File

@ -1,7 +1,7 @@
[metadata]
name = tuskar-sat-ui
name = tuskar-ui-extras
version = 2014.1
summary = Tuskar Management Dashboard Satellite Plugin
summary = Tuskar Management Dashboard Extra Plugins
description-file =
README.rst
author = OpenStack
@ -30,6 +30,7 @@ setup-hooks =
[files]
packages =
tuskar_sat_ui
tuskar_boxes
[build_sphinx]
all_files = 1

0
tuskar_boxes/__init__.py Normal file
View File

27
tuskar_boxes/panel.py Normal file
View File

@ -0,0 +1,27 @@
# -*- coding: utf8 -*-
#
# 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.
from django.utils.translation import ugettext_lazy as _
import horizon
from tuskar_ui.infrastructure import dashboard
class Overview(horizon.Panel):
name = _("Overview")
slug = "overview"
dashboard.Infrastructure.register(Overview)