mirror of
https://github.com/wassname/flask-security.git
synced 2026-06-27 16:10:11 +08:00
remove __version__ because it was causing problems with installation from pypi
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
:license: MIT, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
__version__ = '1.2.1'
|
||||
|
||||
import sys
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user