Initial installer work

This commit is contained in:
Rob Raymond 2014-04-29 14:09:19 -06:00
parent 6f6e4ead54
commit 7bcb7be2b3
7 changed files with 66 additions and 0 deletions

4
debian/changelog vendored Normal file
View File

@ -0,0 +1,4 @@
monitoring-plugin (0.0.1) precise; urgency=low
* Initial Package creation

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

15
debian/control vendored Normal file
View File

@ -0,0 +1,15 @@
Source: monitoring
Section: python
Priority: optional
Maintainer: HPCloud Monitoring <hpcs-mon@hp.com>
Build-Depends: debhelper (>= 7),
python (>= 2.6.6-3~),
python-setuptools
Standards-Version: 3.9.3
X-Python-Version: >= 2.6
Package: monitoring-plugin
Architecture: all
Section: python
Depends: ${misc:Depends}, ${python:Depends}, libpython2.7, python-pkg-resources, python-pbr, python-monclient
Description:Monitoring Plugin for Horizon

4
debian/copyright vendored Normal file
View File

@ -0,0 +1,4 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
Copyright: 2014, HP
License: Proprietary

4
debian/rules vendored Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh $@ --with python2

33
setup.cfg Normal file
View File

@ -0,0 +1,33 @@
[metadata]
name = monitoring-plugin
summary = OpenStack Monitoring Plugin for Horizon
description-file = README.md
author = OpenStack
author-email = rob.raymond@hp.com
home-page = https://git.hpcloud.net/mon/mon-ui
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.7
Programming Language :: Python :: 2.6
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
[files]
packages = monitoring
[pbr]
autodoc_index_modules = True
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[wheel]
universal = 1

5
setup.py Executable file
View File

@ -0,0 +1,5 @@
from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True)