-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
86 lines (58 loc) · 1.51 KB
/
setup.cfg
File metadata and controls
86 lines (58 loc) · 1.51 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
[flake8]
max-line-length = 120
extend-ignore = E203,W503
exclude = tests,example_usage.py,demo_homomorphic.py
per-file-ignores =
cryptography_suite/__init__.py:F401
[mypy]
python_version = 3.12
plugins = tools.mypy_crypto_checker
[mypy-Pyfhel.*]
ignore_missing_imports = True
[mypy-pybulletproofs.*]
ignore_missing_imports = True
[mypy-pysnark.*]
ignore_missing_imports = True
[mypy-pqcrypto.*]
ignore_missing_imports = True
[mypy-cryptography_suite.asymmetric.bls]
ignore_errors = True
[mypy-cryptography_suite.symmetric.aes]
ignore_errors = True
[mypy-cryptography_suite.symmetric.chacha]
ignore_errors = True
[mypy-cryptography_suite.__init__]
ignore_errors = True
[mypy-cryptography_suite.protocols.pake]
ignore_errors = True
[mypy-cryptography_suite.experimental.signal_demo.*]
ignore_errors = True
[mypy-cryptography_suite.pqc.*]
ignore_errors = True
[mypy-cryptography.*]
ignore_missing_imports = True
[mypy-Crypto.*]
ignore_missing_imports = True
[mypy-blake3]
ignore_missing_imports = True
[mypy-ipywidgets.*]
ignore_missing_imports = True
[mypy-IPython.*]
ignore_missing_imports = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-yaml]
ignore_missing_imports = True
[mypy-jinja2.*]
ignore_missing_imports = True
[mypy-rich.*]
ignore_missing_imports = True
[mypy-cryptography_suite.core.*]
strict = True
[mypy-cryptography_suite.config]
strict = True
[mypy-cryptography_suite.errors]
strict = True
[build_ext]
define = -D_FORTIFY_SOURCE=2
extra_compile_args = -O2 -fstack-protector-strong -fPIC