-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (64 loc) · 1.67 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
[wipac:cicd_setup_builder]
python_min = 3.8
package_dirs = http_data_transfer_client
[metadata] # generated by wipac:cicd_setup_builder: version
version = attr: http_data_transfer_client.__version__
[semantic_release] # generated by wipac:cicd_setup_builder
version_variable = http_data_transfer_client/__init__.py:__version__
upload_to_pypi = False
patch_without_tag = True
commit_parser = semantic_release.history.tag_parser
minor_tag = [minor]
fix_tag = [fix]
branch = main
[options] # generated by wipac:cicd_setup_builder: python_requires, packages
install_requires =
aiohttp[speedups]
appdirs
pyjwt[crypto]
tornado
wipac-rest-tools>=1.3.6
python_requires = >=3.8, <3.12
packages = find:
[options.extras_require]
tests =
pytest
pytest-asyncio
pytest-cov
pytest-mock
coverage
flake8
integration =
wipac-keycloak-rest-services
[options.package_data] # generated by wipac:cicd_setup_builder: '*'
* = py.typed
[options.packages.find]
include =
http_data_transfer_client
http_data_transfer_client.*
[coverage:run]
branch = True
source = keycloak_http_auth
[coverage:report]
# regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
ignore_errors = True
skip_empty = True
[coverage:html]
directory = htmlcov
[flake8]
ignore = E203,E226,E228,E231,E501,W503,W504
exclude = env,tests,integration_tests
[tool:pytest]
asyncio_mode = auto