From a89d48b56472249ff535a658bf4a8889f146bfa9 Mon Sep 17 00:00:00 2001 From: Jeffrey Marvin Forones Date: Sat, 28 Oct 2017 19:29:38 +0800 Subject: [PATCH] version enhancement --- flask_blueprint/__init__.py | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/flask_blueprint/__init__.py b/flask_blueprint/__init__.py index 06ef975..f654633 100644 --- a/flask_blueprint/__init__.py +++ b/flask_blueprint/__init__.py @@ -14,6 +14,7 @@ """ __all__ = ['Core'] +__version__ = '1.1.7' class Core: diff --git a/setup.py b/setup.py index eab79bf..92a9d80 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ from distutils.core import setup +from flask_blueprint import __version__ setup( name='flask-blueprint', - version='1.1.6', + version=__version__, description='Flask blueprint generator', author='Jeffrey Marvin Forones', author_email='aiscenblue@gmail.com',