X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=setup.py;h=d1a10332b068a3507d3dfa7ef5ec97d85f179315;hp=3e17a5af0d7d98522dd24f40027db5ba8c088e37;hb=819d34c8315de5c2010743f499f7882b8957dcbf;hpb=a8d63635eecb1c8debab5f674931a453ea39e78d diff --git a/setup.py b/setup.py index 3e17a5a..d1a1033 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ setup( name=_name, description='OSM North Bound Interface', long_description=README, - # version_command=('git describe --tags --long --dirty', 'pep440-git'), - version=VERSION, + version_command=('git describe --match v* --tags --long --dirty', 'pep440-git'), + # version=VERSION, # python_requires='>3.5.0', author='ETSI OSM', author_email='alfonso.tiernosepulveda@telefonica.com', @@ -34,14 +34,13 @@ setup( "git+https://osm.etsi.org/gerrit/osm/common.git@master#egg=osm-common-0.1.4" ], install_requires=[ - 'CherryPy', 'pymongo', 'jsonschema', 'PyYAML', + 'CherryPy', 'pymongo', 'jsonschema', 'PyYAML', 'python-keystoneclient' # 'osm-common', ], - # setup_requires=['setuptools-version-command'], + setup_requires=['setuptools-version-command'], # test_suite='nose.collector', # entry_points=''' # [console_scripts] # osm=osm_nbi.nbi:nbi # ''', ) -