Adds support for OSMMON_DATABASE_COMMONKEY to decrypt vim passwords
[osm/MON.git] / setup.py
index 6ea105c..3646610 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ def parse_requirements(requirements):
 
 
 _name = 'osm_mon'
-_version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git')
+_version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full')
 _description = 'OSM Monitoring Module'
 _author = "Benjamín Díaz"
 _author_email = 'bdiaz@whitestack.com'
@@ -53,7 +53,7 @@ setup(
     scripts=['osm_mon/plugins/vRealiseOps/vROPs_Webservice/vrops_webservice',
              'osm_mon/core/message_bus/common_consumer.py'],
     install_requires=[
-        "kafka==1.3.*",
+        "kafka-python==1.4.*",
         "requests==2.18.*",
         "cherrypy==14.0.*",
         "jsmin==2.2.*",
@@ -68,9 +68,17 @@ setup(
         "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-collector = osm_mon.cmd.mon_collector:main",
+        ]
+    },
     dependency_links=[
         'git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common'
     ],