Bug fix 333, pexpect installation fix
[osm/openvim.git] / setup_lite.py
index cf38014..171ea5d 100755 (executable)
@@ -3,7 +3,7 @@
 from setuptools import setup
 
 __name = 'lib_osm_openvim'
-__version = '1.0.0'
+__version = open('OVIM_VERSION').read().strip()
 __description = 'OSM Openvim library'
 __author = 'ETSI OSM'
 __author_email = 'alfonso.tiernosepulveda@telefonica.com'
@@ -35,10 +35,10 @@ _req = [
     "netaddr",
     "bottle",
     "MySQL-python",
-    "paramiko",
+    "paramiko"
 ]
 
-__scripts__ = ['openflow']
+__scripts__ = ['openflow-lib']
 
 setup(name=__name,
       version=__version,