""" Flask-Security ============== Flask-Security is a Flask extension that aims to add quick and simple security to your Flask applications. Resources --------- * `Documentation `_ * `Issue Tracker `_ * `Source `_ * `Development Version `_ """ from setuptools import setup setup( name='Flask-Security', version='1.5.1', url='https://github.com/mattupstate/flask-security', license='MIT', author='Matt Wright', author_email='matt@nobien.net', description='Simple security for Flask apps', long_description=__doc__, packages=[ 'flask_security' ], zip_safe=False, include_package_data=True, platforms='any', install_requires=[ 'Flask>=0.8', 'Flask-Login==0.1.3', 'Flask-Mail==0.7.3', 'Flask-Principal==0.3.3', 'Flask-WTF==0.8', 'itsdangerous==0.17', 'passlib==1.6.1', ], test_suite='nose.collector', tests_require=[ 'nose', 'Flask-SQLAlchemy', 'Flask-MongoEngine', 'py-bcrypt', 'simplejson' ], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ] )