X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=7b810efacbee2abeb1b08d59c452797812586127;hb=07f4f49ac725a07ba696b794fa26718a15d07082;hp=4050dd6b2a9b12380cfbbb68aa12616253a56f94;hpb=897fb36025aec92f8e0b577ee3234ceb061db69b;p=osm%2FMON.git diff --git a/setup.py b/setup.py index 4050dd6..7b810ef 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ __date__ = "14/Sep/2017" from setuptools import setup from os import system -_name = 'mon' +_name = 'core' _version = '1.0' _description = 'OSM Monitoring Module' _author = 'Prithiv Mohan' @@ -38,9 +38,9 @@ _license = 'Apache 2.0' _copyright = 'Intel Research and Development Ireland' _url = 'https://osm.etsi.org/gitweb/?p=osm/MON.git;a=tree' _requirements = [ - "MySQL-python", + "MySQL-python", "requests", - "loguitls", + "logutils", "cherrypy", "jsmin", "jsonschema", @@ -48,19 +48,18 @@ _requirements = [ "python-novaclient", "python-keystoneclient", "python-neutronclient", - "python-aodhclient", - "python-gnocchi client", - "boto==2.8", + "aodhclient", + "gnocchiclient", + "boto==2.48", "python-cloudwatchlogs-logging", "py-cloudwatch", "pyvcloud", "pyopenssl", - "python-requests", "cherrypy", - "python-bottle", + "bottle", ] -setup(name=_name, +setup(name="mon_core", version = _version, description = _description, long_description = open('README.rst').read(), @@ -76,6 +75,10 @@ setup(name=_name, package_data = {_name: ['core/message_bus/*.py', 'core/models/*.json', 'plugins/OpenStack/Aodh/*.py', 'plugins/OpenStack/Gnocchi/*.py', 'plugins/vRealiseOps/*', 'plugins/CloudWatch/*']}, + data_files = [('/etc/systemd/system/', ['core/kafka.service']), + ], + scripts=['plugins/vRealiseOps/vROPs_Webservice/vrops_webservice', + 'kafkad'], install_requires = _requirements, include_package_data=True, )