Minor fixed to the deb enviroment.

This commit is contained in:
Tim Kuhlman 2014-02-28 11:17:10 -07:00
parent 660a2ecabe
commit b8726dc564
4 changed files with 6 additions and 9 deletions

View File

10
debian/control vendored
View File

@ -1,4 +1,4 @@
Source: monagent Source: mon-agent
Section: python Section: python
Priority: optional Priority: optional
Maintainer: Gary Hessler, <gary.hessler@hp.com> Maintainer: Gary Hessler, <gary.hessler@hp.com>
@ -8,10 +8,10 @@ Build-Depends: debhelper (>= 7),
Standards-Version: 3.9.3 Standards-Version: 3.9.3
X-Python-Version: >= 2.6 X-Python-Version: >= 2.6
Package:monagent Package:mon-agent
Architecture: all Architecture: all
Section: python Section: python
Depends: ${misc:Depends}, ${python:Depends}, nose==1.3.0, python-memcached, pyyaml, simplejson, psutil, pylint Depends: ${misc:Depends}, ${python:Depends}, python-memcached, pyyaml, simplejson, psutil, pylint
Description: Monitoring Agent. Used to send metrics from the host system Description: Monitoring Agent
to a centralized collection point Used to send metrics from the host system to a centralized collection point

View File

@ -4,4 +4,4 @@ python-memcached
pyyaml pyyaml
simplejson simplejson
psutil psutil
pylint pylint

View File

@ -1,7 +1,5 @@
from glob import glob
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name="Monitoring Agent", name="Monitoring Agent",
version="0.1", version="0.1",
@ -11,6 +9,5 @@ setup(
'monagent = monagent.agent:main' 'monagent = monagent.agent:main'
], ],
}, },
scripts=glob('bin/*'),
test_suite='tests' test_suite='tests'
) )