From d4b8804abb876bda9803cee61c6c4298b475e6be Mon Sep 17 00:00:00 2001 From: Prashanth Pai Date: Tue, 9 Aug 2016 14:25:31 +0530 Subject: Simplify packaging * Rename .unittests.sh to .unitests * Fix entries in MANIFEST.in file * Mover version declaration to gfapi.py TODO: Fix the spec file. That'll be sent as a separate change. Change-Id: I0cba8964c1ecc337128c8edc9f301fc1d023bd28 Signed-off-by: Prashanth Pai --- gluster/__init__.py | 31 ------------------------------- gluster/gfapi.py | 2 ++ 2 files changed, 2 insertions(+), 31 deletions(-) (limited to 'gluster') diff --git a/gluster/__init__.py b/gluster/__init__.py index fda7c92..e795df8 100644 --- a/gluster/__init__.py +++ b/gluster/__init__.py @@ -10,34 +10,3 @@ from pkgutil import extend_path __path__ = extend_path(__path__, __name__) - - -class PkgInfo(object): - def __init__(self, canonical_version, release, name, final): - self.canonical_version = canonical_version - self.release = release - self.name = name - self.final = final - - def save_config(self, filename): - """ - Creates a file with the package configuration which can be sourced by - a bash script. - """ - with open(filename, 'w') as fd: - fd.write("NAME=%s\n" % self.name) - fd.write("VERSION=%s\n" % self.canonical_version) - fd.write("RELEASE=%s\n" % self.release) - - @property - def pretty_version(self): - if self.final: - return self.canonical_version - else: - return '%s-dev' % (self.canonical_version,) - - -# Change the Package version here -_pkginfo = PkgInfo('0.0.1', '0', 'python-libgfapi', False) -__version__ = _pkginfo.pretty_version -__canonical_version__ = _pkginfo.canonical_version diff --git a/gluster/gfapi.py b/gluster/gfapi.py index 6186723..222f7a2 100755 --- a/gluster/gfapi.py +++ b/gluster/gfapi.py @@ -20,6 +20,8 @@ from gluster import api from gluster.exceptions import LibgfapiException, Error from gluster.utils import validate_mount, validate_glfd +__version__ = '1.0' + # TODO: Move this utils.py python_mode_to_os_flags = {} -- cgit