diff --git a/setup.py b/setup.py index 99c150f..d67c155 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from setuptools import setup - +from centpkg import __version__ setup( name = "centpkg", - version = "0.4.4", + version = __version__, author = "Brian Stinson", author_email = "bstinson@ksu.edu", description = "CentOS Plugin to rpkg for managing RPM package sources", diff --git a/src/centpkg/__init__.py b/src/centpkg/__init__.py index edf1bfe..8332535 100644 --- a/src/centpkg/__init__.py +++ b/src/centpkg/__init__.py @@ -25,6 +25,8 @@ from pyrpkg import Commands, rpkgError from centos import centos_cert from . import cli +__version__ = '0.4.5' + class DistGitDirectory(object): signame = None @@ -91,7 +93,7 @@ class Commands(Commands): def __init__(self, path, lookaside, lookasidehash, lookaside_cgi, gitbaseurl, anongiturl, branchre, kojiconfig, build_client, user=None, dist=None, target=None, - quiet=False): + quiet=False, distgit_namespaced=False): ''' Init the object and some configuration details. '''