X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=c85fa76aa210bc1acda8914e2838ea14219bed83;hb=de3d570360a0a31d3054a6ff72b09ae9f559b59c;hp=364661040e613891ac65a4a6c95bd8025d922415;hpb=0e34244e420bd68e6acb0cf6bb4383fedb662070;p=osm%2FMON.git diff --git a/setup.py b/setup.py index 3646610..c85fa76 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,22 +50,14 @@ 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-python==1.4.*", + "kafka-python==1.4.3", "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.*", "prometheus_client==0.4.*", @@ -76,7 +68,10 @@ setup( include_package_data=True, entry_points={ "console_scripts": [ + "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=[