X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=942ec67ab4d23e611ba510fc5ba538c9c2f0fcfd;hb=e71feff83ee0acd22eb2cfc8b57f9b0ad25e4651;hp=db7a71561fefdf4c878aa080d0d3838a2ed68241;hpb=4da146638bc3838270fa41c9f9fb91961f726c97;p=osm%2FMON.git diff --git a/setup.py b/setup.py index db7a715..942ec67 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( name=_name, version_command=_version_command, description=_description, - long_description=open('README.rst').read(), + long_description=open('README.rst', encoding='utf-8').read(), author=_author, author_email=_author_email, maintainer=_maintainer, @@ -50,30 +50,28 @@ setup( license=_license, packages=[_name], package_dir={_name: _name}, - scripts=['osm_mon/plugins/vRealiseOps/vROPs_Webservice/vrops_webservice', - 'osm_mon/core/message_bus/common_consumer.py'], install_requires=[ - "kafka==1.3.*", + "aiokafka==0.4.*", "requests==2.18.*", "cherrypy==14.0.*", "jsmin==2.2.*", "jsonschema==2.6.*", "python-keystoneclient==3.15.*", - "boto==2.48", - "python-cloudwatchlogs-logging==0.0.3", - "py-cloudwatch==0.0.1", - "pyvcloud==19.1.1", - "pyopenssl==17.5.*", "six==1.11.*", - "bottle==0.12.*", "peewee==3.1.*", "pyyaml==3.*", - "osm-common" + "prometheus_client==0.4.*", + "gnocchiclient==7.0.*", + "osm-common", + "n2vc" ], include_package_data=True, entry_points={ "console_scripts": [ - "osm-mon-prometheus-exporter = osm_mon.cmd.mon_prometheus_exporter:main", + "osm-mon-server = osm_mon.cmd.mon_server:main", + "osm-mon-evaluator = osm_mon.cmd.mon_evaluator:main", + "osm-mon-collector = osm_mon.cmd.mon_collector:main", + "osm-mon-healthcheck = osm_mon.cmd.mon_healthcheck:main", ] }, dependency_links=[