forked from WIPACrepo/MQClient-NATS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
94 lines (81 loc) · 2.29 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
[wipac:cicd_setup_builder]
pypi_name = wipac-mqclient-nats
python_min = 3.7
keywords_spaced = python message passing client API mq OpenTelemetry tracing telemetry NATS nats.io
[metadata] # generated by wipac:cicd_setup_builder
name = wipac-mqclient-nats
version = attr: mqclient_nats.__version__
url = https://github.com/WIPACrepo/MQClient-NATS
author = WIPAC Developers
author_email = developers@icecube.wisc.edu
description = A NATS Message Queue Client API (Supporting the MQClient Interface)
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
python
message
passing
client
API
mq
OpenTelemetry
tracing
telemetry
NATS
nats.io
WIPAC
IceCube
license = MIT
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
download_url = https://pypi.org/project/wipac-mqclient-nats/
project_urls =
Tracker = https://github.com/WIPACrepo/MQClient-NATS/issues
Source = https://github.com/WIPACrepo/MQClient-NATS
[semantic_release] # generated by wipac:cicd_setup_builder
version_variable = mqclient_nats/__init__.py:__version__
upload_to_pypi = True
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'
python_requires = >=3.7, <3.11
packages = find:
install_requires =
nats-py[nkeys]
wipac-mqclient
[options.package_data] # generated by wipac:cicd_setup_builder: '*'
* = py.typed
[options.extras_require]
telemetry =
wipac-mqclient[telemetry]
[coverage:run]
branch = True
parallel = True
[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__.:
omit = *__init__*
ignore_errors = True
[coverage:html]
directory = htmlcov
[flake8]
ignore = E226,E261,E302,E305,E501,W503,W504