forked from inveniosoftware/flask-security-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
83 lines (73 loc) · 1.85 KB
/
setup.cfg
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[metadata]
name = Flask-Security-Invenio
version = attr: flask_security.__version__
description = "Simple security for Flask apps."
long_description = file: README.rst, CHANGES.rst
keywords = flask security
license = MIT
author = CERN/TU Wien/JRC
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/flask-security-invenio
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.6
zip_safe = False
install_requires =
email-validator>=1.0.5
speaklater>=1.3
Flask-Babel>=2.0.0
Flask-Login>=0.4.1
Flask-Mail>=0.9.1
Flask-Principal>=0.4.0
Flask-WTF>=1.1.0
Flask>=2.0
itsdangerous>=2.0
passlib>=1.7
[options.extras_require]
tests =
bcrypt>=3.1.0
check-manifest>=0.42
coverage>=5.3,<6
Flask-Sphinx-Themes>=1.0.2
Flask-SQLAlchemy>=2.5.1
mock>=1.3.0
msgcheck>=2.9
pytest-cov>=2.10.1
pytest-flask>=1.0.0
pytest-isort>=1.2.0
pytest-pycodestyle>=2.2.0
pytest-pydocstyle>=2.2.0
pytest>=6,<7
sphinx>=4.2.0,<5
Werkzeug>=2.0
[bdist_wheel]
universal=1
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
warning-is-error = 1
[upload_sphinx]
upload-dir = docs/_build/html
[compile_catalog]
directory = flask_security/translations/
domain = flask_security
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = flask_security/translations/flask_security.pot
add-comments = NOTE
[init_catalog]
domain = flask_security
input-file = flask_security/translations/flask_security.pot
output-dir = flask_security/translations/
[update_catalog]
domain = flask_security
input-file = flask_security/translations/flask_security.pot
output-dir = flask_security/translations/
[pydocstyle]
add_ignore = D401