forked from inveniosoftware/invenio-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
93 lines (79 loc) · 2.3 KB
/
setup.cfg
File metadata and controls
93 lines (79 loc) · 2.3 KB
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
84
85
86
87
88
89
90
91
92
93
# -*- coding: utf-8 -*-
#
# Copyright (C) 2019-2024 Esteban J. Garcia Gabancho.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Invenio-SAML is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
[metadata]
name = invenio-saml
version = attr: invenio_saml.__version__
description = "Invenio module that provides SAML integration."
long_description = file: README.rst, CHANGES.rst
keywords = invenio SSO SAML
license = MIT
author = Esteban J. Garcia Gabancho
author_email = info@inveniosoftware.org
platforms = any
url = https://github.com/inveniosoftware/invenio-saml
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-accounts>=1.4.5,<7.0.0
uritools>=2.2.0
python3-saml>=1.5.0
[options.extras_require]
tests =
pytest-black-ng>=0.4.0
invenio-app>=1.3.0,<3.0.0
invenio-mail>=1.0.0,<3.0.0
invenio-userprofiles>=1.0.0,<5.0.0
mock>=2.0.0
redis>=2.10.5
pytest-invenio>=2.1.0,<4.0.0
pytest-freezegun>=0.2.0
invenio-oauthclient>=1.5.1,<5.0.0
Sphinx>=4.5.0
invenio-db[mysql,postgresql,versioning]>=1.0.9,<3.0.0
xmlsec>=1.3.17
[options.entry_points]
invenio_base.apps =
invenio_saml = invenio_saml:InvenioSSOSAML
invenio_base.api_apps =
invenio_saml = invenio_saml:InvenioSSOSAML
invenio_i18n.translations =
invenio_saml = invenio_saml
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[compile_catalog]
directory = invenio_saml/translations/
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = info@inveniosoftware.org
mapping_file = babel.ini
output_file = invenio_saml/translations/messages.pot
[init_catalog]
input_file = invenio_saml/translations/messages.pot
output_dir = invenio_saml/translations/
[update_catalog]
input_file = invenio_saml/translations/messages.pot
output_dir = invenio_saml/translations/
[pydocstyle]
add_ignore = D401
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_saml --cov-report=term-missing
testpaths = docs tests invenio_saml