X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=163d17f6ae403d05c26e7e6c5dd39919f4b45058;hb=925ff50f55485470e3243c090d89ceb715e6518d;hp=6b1faab57877144c594e7ef624d2acd91aa25664;hpb=71ce7eca516321aff84332df56702e718968735b;p=osm%2FMON.git diff --git a/setup.py b/setup.py index 6b1faab..163d17f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ __author__ = "Prithiv Mohan" __date__ = "14/Sep/2017" from setuptools import setup from os import system -_name = 'osm-mon' +_name = 'osm_mon' _version = '1.0' _description = 'OSM Monitoring Module' _author = 'Prithiv Mohan' @@ -44,12 +44,12 @@ setup(name="osm_mon", license = _license, packages = [_name], package_dir = {_name: _name}, - package_data = {_name: ['osm-mon/core/message_bus/*.py', 'osm-mon/core/models/*.json', - 'osm-mon/plugins/OpenStack/Aodh/*.py', 'osm-mon/plugins/OpenStack/Gnocchi/*.py', - 'osm-mon/plugins/vRealiseOps/*', 'osm-mon/plugins/CloudWatch/*']}, + package_data = {_name: ['osm_mon/core/message_bus/*.py', 'osm_mon/core/models/*.json', + 'osm_mon/plugins/OpenStack/Aodh/*.py', 'osm_mon/plugins/OpenStack/Gnocchi/*.py', + 'osm_mon/plugins/vRealiseOps/*', 'osm_mon/plugins/CloudWatch/*']}, data_files = [('/etc/systemd/system/', ['scripts/kafka.sh']), ], - scripts=['osm-mon/plugins/vRealiseOps/vROPs_Webservice/vrops_webservice', - 'kafkad', 'osm-mon/core/message_bus/common_consumer'], + scripts=['osm_mon/plugins/vRealiseOps/vROPs_Webservice/vrops_webservice', + 'kafkad', 'osm_mon/core/message_bus/common_consumer.py'], include_package_data=True, )