summaryrefslogtreecommitdiffstats
path: root/gluster
diff options
context:
space:
mode:
authorPrashanth Pai <ppai@redhat.com>2016-08-09 14:25:31 +0530
committerPrashanth Pai <ppai@redhat.com>2016-08-09 14:37:15 +0530
commitd4b8804abb876bda9803cee61c6c4298b475e6be (patch)
treeedc8089169dd365447eaac8d6165f2409da5afff /gluster
parent5d09981197e5f13003b05f9c1bc7f67141c068f7 (diff)
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 <ppai@redhat.com>
Diffstat (limited to 'gluster')
-rw-r--r--gluster/__init__.py31
-rwxr-xr-xgluster/gfapi.py2
2 files changed, 2 insertions, 31 deletions
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 = {}