forked from grnet/pysaml2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
103 lines (88 loc) · 2.01 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[metadata]
name = pysaml2
version = file:VERSION
author = IdentityPython
author-email = [email protected]
maintainer = IdentityPython
maintainer-email = [email protected]
license = Apache License Version 2.0
license-file = LICENSE
description = Python implementation of SAML Version 2 Standard
long-description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
home-page = https://idpy.org
project_urls =
Bug Tracker = https://github.com/IdentityPython/pysaml2/issues
Documentation = https://pysaml2.readthedocs.io
Source Code = https://github.com/IdentityPython/pysaml2
classifier =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
requires-dist = setuptools
keywords =
saml
saml2
standard
federation
idpy
IdentityPython
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages = find:
scripts =
tools/make_metadata.py
tools/mdexport.py
tools/merge_metadata.py
tools/parse_xsd2.py
install_requires =
cryptography >= 1.4
defusedxml
pyOpenSSL
python-dateutil
pytz
requests >= 1.0.0
six
[options.packages.find]
where = src
include =
saml2
saml2.*
[options.package_data]
* =
*.xml
[options.extras_require]
s2repoze =
paste
zope.interface
repoze.who
[bdist_wheel]
universal = 1
[tool:pytest]
markers =
mongo: marks tests that need mongodb
[flake8]
author-attribute = forbidden
no-accept-encodings = True
assertive-snakecase = True
# assertive-test-pattern = <fnmatch>
inline-quotes = "
multiline-quotes = """
docstring-quotes = """
application-import-names = saml2
hang_closing = false
doctests = false
max-complexity = 10
exclude =
.git
__pycache__
docs/source/conf.py
build
dist