diff options
| -rw-r--r-- | pluginbase.py | 2 | ||||
| -rw-r--r-- | setup.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pluginbase.py b/pluginbase.py index b31711a..05d582e 100644 --- a/pluginbase.py +++ b/pluginbase.py @@ -32,7 +32,7 @@ else: from io import BytesIO as NativeBytesIO -__version__ = '0.7b0' +__version__ = '0.7' _local = threading.local() _internalspace = ModuleType(__name__ + '._internalspace') @@ -5,7 +5,7 @@ base_directory = os.path.dirname(__file__) from setuptools import setup -DESCRIPTION = """ +DESCRIPTION = """\ PluginBase is a module for Python that enables the development of flexible \ plugin systems in Python.\ """ @@ -19,7 +19,7 @@ setup( author_email='armin.ronacher@active-4.com', maintainer='Spencer McIntyre', maintainer_email='zeroSteiner@gmail.com', - version='0.7-dev', + version='0.7', description=DESCRIPTION, long_description=long_description, long_description_content_type='text/markdown', |
