代码拉取完成,页面将自动刷新
同步操作将从 peixinchen/flask-auth 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
"""
==========
Flask-Auth
==========
Database-agnostic extension for Flask to support role-based authentication of
users.
Links
-----
* `Documentation <http://packages.python.org/Flask-Auth>`_
* `Repository <http://bitbucket.org/Shotca/flask-auth/>`_
* `Development version
<http://bitbucket.org/Shotca/flask-auth/get/tip.gz#egg=Flask-Auth-dev>`_
Revisions
---------
0.85
```
* Updated to flask 0.8 new naming scheme of using flask.ext instead of flaskext.
* Fixed issue with importing sqlalchemy models.
0.8
```
Mayor revision.
* Not storing the entire user in the session anymore (which was convenient
but bad practice) but only its __dict__.
* As a result of the above, the get_current_user call is now gone and
replaced by get_current_user_data call. Similar functionality to the original
call can now be obtained by doing AuthUser.load_current_user().
* Created SQLAlchemy plug-and-play model using constructor.
* Small bugfixes.
0.7
```
Added tests, permission example, bunch of bugfixes.
0.6
```
Added permission model, added examples, first release on PyPI.
0.1 - 0.5
`````````
Logging in, session management, encryption, etc.
"""
from setuptools import setup
setup(
name='Flask-Auth',
version='0.85',
url='http://bitbucket.org/Shotca/flask-auth/',
license='BSD',
author='Lars de Ridder',
description='Auth extension for Flask.',
long_description=__doc__,
packages=[
'flaskext',
'flaskext.auth',
'flaskext.auth.models',
],
namespace_packages=['flaskext'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='test_auth.suite',
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。