remove __version__ because it was causing problems with installation from pypi

This commit is contained in:
Matt Wright
2012-04-04 12:16:00 -04:00
parent 2e37af8c01
commit 0acf4bca0d
3 changed files with 4 additions and 6 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ import sys, os
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('..'))
sys.path.append(os.path.abspath('_themes'))
from flask_security import __version__
#from setup import __version__
# -- General configuration -----------------------------------------------------
@@ -50,7 +50,7 @@ copyright = u'2012, Matt Wright'
# built documents.
#
# The short X.Y version.
version = __version__
version = '1.2.1'
# The full version, including alpha/beta/rc tags.
release = version
-2
View File
@@ -10,8 +10,6 @@
:license: MIT, see LICENSE for more details.
"""
__version__ = '1.2.1'
import sys
from datetime import datetime
+2 -2
View File
@@ -12,12 +12,12 @@ Links
<https://github.com/mattupstate/flask-security/raw/develop#egg=Flask-Security-dev>`_
"""
from flask_security import __version__
from setuptools import setup
setup(
name='Flask-Security',
version=__version__,
version='1.2.1',
url='https://github.com/mattupstate/flask-security',
license='MIT',
author='Matthew Wright',