X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=a34c70884d97f81c99c62a5026559f2471da2bdf;hb=a15c4b97ee155f7ad78077abed9ec9a5fe88ee10;hp=fb389700bf3ea3e72f06ceea1338066f966e49de;hpb=e5ef517abec7db86ce2ee7cba628548ce4b5a6fd;p=osm%2FRO.git diff --git a/setup.py b/setup.py index fb389700..a34c7088 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,6 @@ from os import system #import glob _name = 'osm_ro' -_version = open('RO_VERSION').read() _description = 'OSM Resource Orchestrator' _author = 'ETSI OSM' _author_email = 'alfonso.tiernosepulveda@telefonica.com' @@ -18,26 +17,31 @@ _url = 'https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary' _requirements = [ "PyYAML", "bottle", - "MySQL-python", + #"mysqlclient", + #"MySQLdb", "jsonschema", "paramiko", "argcomplete", "requests", "logutils", + "python-openstackclient", "python-novaclient", "python-keystoneclient", "python-glanceclient", "python-neutronclient", "python-cinderclient", - "pyvcloud", - "progressbar", + #"pyvcloud", + #"progressbar", "prettytable", - "pyvmomi", + #"pyvmomi", "boto", + #"lib_osm_openvim", + #"osm_im", + "python-crypto", ] setup(name=_name, - version = _version, + version_command=('git describe', 'pep440-git'), description = _description, long_description = open('README.rst').read(), author = _author, @@ -59,5 +63,7 @@ setup(name=_name, scripts=['openmanod', 'openmano', 'osm_ro/scripts/service-openmano', 'osm_ro/scripts/openmano-report',], install_requires=_requirements, include_package_data=True, + setup_requires=['setuptools-version-command'], + #test_suite='nose.collector', )