forked from lingthio/Flask-User
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (53 loc) · 1.97 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
# Import version number from source code
from flask_user import __version__ as flask_user_version
# Read long description from README.rst file
def load_readme():
with open('README.rst') as f:
return f.read()
setup(
name='Flask-User',
version=flask_user_version,
description='Customizable User Authorization and Management: Register, Confirm email, Login, Change username, Change password, Forgot password and more.',
long_description=load_readme(),
url='http://github.com/lingthio/Flask-User',
author='Ling Thio',
author_email='[email protected]',
license='BSD License',
keywords='Flask User Authorization Account Management Registration Username Email Confirmation Forgot Reset Password',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Dutch',
'Natural Language :: English',
'Natural Language :: French',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['flask_user'],
zip_safe=False,
include_package_data=True,
install_requires=[
'Flask>=0.9',
'Flask-Login>=0.3',
'Flask-Mail>=0.9',
'Flask-SQLAlchemy>=1.0',
'Flask-WTF>=0.9',
'bcrypt>=1.1',
'cryptography>=2.0',
'passlib>=1.6',
],
test_suite="flask_user.tests.run_tests",
)