Fix version to reside in setup.py
There are better ways to do this according
to the community but I cannot get it to
work with tox atm. This will unblock the project though.
Change-Id: Ia6b42c8b2078938b0cbc76618938f953f2ab9cb2
Issue-ID: CIMAN-145
Signed-off-by: Jeremy Phelps <jphelps@linuxfoundation.org>
diff --git a/aria/aria-rest-server/setup.py b/aria/aria-rest-server/setup.py
index 799fe46..eca497c 100644
--- a/aria/aria-rest-server/setup.py
+++ b/aria/aria-rest-server/setup.py
@@ -19,15 +19,9 @@
from setuptools import setup, find_packages
-try:
- with open('VERSION') as v_file:
- version = v_file.read().strip()
-except IOError:
- print "There was a problem parsing the VERSION file."
-
setup(
name='aria-rest-server',
- version=version,
+ version='0.1.0',
packages=find_packages(),
author = '',
author_email = '',