diff --git a/cps/constants.py b/cps/constants.py index 89810e90..853e9aa8 100644 --- a/cps/constants.py +++ b/cps/constants.py @@ -129,7 +129,7 @@ def selected_roles(dictionary): BookMeta = namedtuple('BookMeta', 'file_path, extension, title, author, cover, description, tags, series, ' 'series_id, languages') -STABLE_VERSION = {'version': '0.6.10 Beta'} +STABLE_VERSION = {'version': '0.6.10b1'} NIGHTLY_VERSION = {} NIGHTLY_VERSION[0] = '$Format:%H$' diff --git a/setup.py b/setup.py index 6bde2211..593c1b63 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def find_version(*file_paths): raise RuntimeError("Unable to find version string.") setup( - packages=find_packages("src"), - package_dir = {'': 'src'}, - version=find_version("src", "calibreweb", "cps", "constants.py") + packages=find_packages("./"), + package_dir = {'': './'}, + version=find_version("cps", "constants.py") )