coverage 7.13.1__cp314-cp314t-musllinux_1_2_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. a1_coverage.pth +1 -0
  2. coverage/__init__.py +38 -0
  3. coverage/__main__.py +12 -0
  4. coverage/annotate.py +113 -0
  5. coverage/bytecode.py +197 -0
  6. coverage/cmdline.py +1220 -0
  7. coverage/collector.py +487 -0
  8. coverage/config.py +732 -0
  9. coverage/context.py +74 -0
  10. coverage/control.py +1514 -0
  11. coverage/core.py +139 -0
  12. coverage/data.py +251 -0
  13. coverage/debug.py +669 -0
  14. coverage/disposition.py +59 -0
  15. coverage/env.py +135 -0
  16. coverage/exceptions.py +85 -0
  17. coverage/execfile.py +329 -0
  18. coverage/files.py +553 -0
  19. coverage/html.py +860 -0
  20. coverage/htmlfiles/coverage_html.js +735 -0
  21. coverage/htmlfiles/favicon_32.png +0 -0
  22. coverage/htmlfiles/index.html +199 -0
  23. coverage/htmlfiles/keybd_closed.png +0 -0
  24. coverage/htmlfiles/pyfile.html +149 -0
  25. coverage/htmlfiles/style.css +389 -0
  26. coverage/htmlfiles/style.scss +844 -0
  27. coverage/inorout.py +590 -0
  28. coverage/jsonreport.py +200 -0
  29. coverage/lcovreport.py +218 -0
  30. coverage/misc.py +381 -0
  31. coverage/multiproc.py +120 -0
  32. coverage/numbits.py +146 -0
  33. coverage/parser.py +1215 -0
  34. coverage/patch.py +118 -0
  35. coverage/phystokens.py +197 -0
  36. coverage/plugin.py +617 -0
  37. coverage/plugin_support.py +299 -0
  38. coverage/pth_file.py +16 -0
  39. coverage/py.typed +1 -0
  40. coverage/python.py +272 -0
  41. coverage/pytracer.py +370 -0
  42. coverage/regions.py +127 -0
  43. coverage/report.py +298 -0
  44. coverage/report_core.py +117 -0
  45. coverage/results.py +502 -0
  46. coverage/sqldata.py +1212 -0
  47. coverage/sqlitedb.py +226 -0
  48. coverage/sysmon.py +509 -0
  49. coverage/templite.py +319 -0
  50. coverage/tomlconfig.py +212 -0
  51. coverage/tracer.cpython-314t-aarch64-linux-musl.so +0 -0
  52. coverage/tracer.pyi +43 -0
  53. coverage/types.py +214 -0
  54. coverage/version.py +35 -0
  55. coverage/xmlreport.py +263 -0
  56. coverage-7.13.1.dist-info/METADATA +200 -0
  57. coverage-7.13.1.dist-info/RECORD +61 -0
  58. coverage-7.13.1.dist-info/WHEEL +5 -0
  59. coverage-7.13.1.dist-info/entry_points.txt +4 -0
  60. coverage-7.13.1.dist-info/licenses/LICENSE.txt +177 -0
  61. coverage-7.13.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,200 @@
1
+ Metadata-Version: 2.4
2
+ Name: coverage
3
+ Version: 7.13.1
4
+ Summary: Code coverage measurement for Python
5
+ Home-page: https://github.com/coveragepy/coveragepy
6
+ Author: Ned Batchelder and 248 others
7
+ Author-email: ned@nedbatchelder.com
8
+ License: Apache-2.0
9
+ Project-URL: Documentation, https://coverage.readthedocs.io/en/7.13.1
10
+ Project-URL: Funding, https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=pypi
11
+ Project-URL: Issues, https://github.com/coveragepy/coveragepy/issues
12
+ Project-URL: Mastodon, https://hachyderm.io/@coveragepy
13
+ Project-URL: Mastodon (nedbat), https://hachyderm.io/@nedbat
14
+ Keywords: code coverage testing
15
+ Classifier: Development Status :: 5 - Production/Stable
16
+ Classifier: Environment :: Console
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
26
+ Classifier: Programming Language :: Python :: 3.15
27
+ Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
30
+ Classifier: Topic :: Software Development :: Quality Assurance
31
+ Classifier: Topic :: Software Development :: Testing
32
+ Requires-Python: >=3.10
33
+ Description-Content-Type: text/x-rst
34
+ License-File: LICENSE.txt
35
+ Provides-Extra: toml
36
+ Requires-Dist: tomli; python_full_version <= "3.11.0a6" and extra == "toml"
37
+ Dynamic: author
38
+ Dynamic: author-email
39
+ Dynamic: classifier
40
+ Dynamic: description
41
+ Dynamic: description-content-type
42
+ Dynamic: home-page
43
+ Dynamic: keywords
44
+ Dynamic: license
45
+ Dynamic: license-file
46
+ Dynamic: project-url
47
+ Dynamic: provides-extra
48
+ Dynamic: requires-python
49
+ Dynamic: summary
50
+
51
+ .. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
52
+ .. For details: https://github.com/coveragepy/coveragepy/blob/main/NOTICE.txt
53
+
54
+ ===========
55
+ Coverage.py
56
+ ===========
57
+
58
+ Code coverage measurement for Python.
59
+
60
+ .. image:: https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg
61
+ :target: https://vshymanskyy.github.io/StandWithUkraine
62
+ :alt: Stand with Ukraine
63
+
64
+ -------------
65
+
66
+ | |kit| |license| |versions|
67
+ | |test-status| |quality-status| |docs| |metacov|
68
+ | |tidelift| |sponsor| |stars| |mastodon-coveragepy| |mastodon-nedbat|
69
+ |bluesky-nedbat|
70
+
71
+ Coverage.py measures code coverage, typically during test execution. It uses
72
+ the code analysis tools and tracing hooks provided in the Python standard
73
+ library to determine which lines are executable, and which have been executed.
74
+
75
+ Coverage.py runs on these versions of Python:
76
+
77
+ .. PYVERSIONS
78
+
79
+ * Python 3.10 through 3.15 alpha, including free-threading.
80
+ * PyPy3 versions 3.10 and 3.11.
81
+
82
+ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
83
+ `GitHub`_.
84
+
85
+ .. _Read the Docs: https://coverage.readthedocs.io/en/7.13.1/
86
+ .. _GitHub: https://github.com/coveragepy/coveragepy
87
+
88
+
89
+ For Enterprise
90
+ --------------
91
+
92
+ .. |tideliftlogo| image:: https://nedbatchelder.com/pix/Tidelift_Logo_small.png
93
+ :alt: Tidelift
94
+ :target: https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme
95
+
96
+ .. list-table::
97
+ :widths: 10 100
98
+
99
+ * - |tideliftlogo|
100
+ - `Available as part of the Tidelift Subscription. <https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme>`_
101
+ Coverage and thousands of other packages are working with
102
+ Tidelift to deliver one enterprise subscription that covers all of the open
103
+ source you use. If you want the flexibility of open source and the confidence
104
+ of commercial-grade software, this is for you.
105
+ `Learn more. <https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme>`_
106
+
107
+
108
+ Getting Started
109
+ ---------------
110
+
111
+ Looking to run ``coverage`` on your test suite? See the `Quick Start section`_
112
+ of the docs.
113
+
114
+ .. _Quick Start section: https://coverage.readthedocs.io/en/7.13.1/#quick-start
115
+
116
+
117
+ Change history
118
+ --------------
119
+
120
+ The complete history of changes is on the `change history page`_.
121
+
122
+ .. _change history page: https://coverage.readthedocs.io/en/7.13.1/changes.html
123
+
124
+
125
+ Code of Conduct
126
+ ---------------
127
+
128
+ Everyone participating in the coverage.py project is expected to treat other
129
+ people with respect and to follow the guidelines articulated in the `Python
130
+ Community Code of Conduct`_.
131
+
132
+ .. _Python Community Code of Conduct: https://www.python.org/psf/codeofconduct/
133
+
134
+
135
+ Contributing
136
+ ------------
137
+
138
+ Found a bug? Want to help improve the code or documentation? See the
139
+ `Contributing section`_ of the docs.
140
+
141
+ .. _Contributing section: https://coverage.readthedocs.io/en/7.13.1/contributing.html
142
+
143
+
144
+ Security
145
+ --------
146
+
147
+ To report a security vulnerability, please use the `Tidelift security
148
+ contact`_. Tidelift will coordinate the fix and disclosure.
149
+
150
+ .. _Tidelift security contact: https://tidelift.com/security
151
+
152
+
153
+ License
154
+ -------
155
+
156
+ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
157
+
158
+ .. _Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
159
+ .. _NOTICE.txt: https://github.com/coveragepy/coveragepy/blob/main/NOTICE.txt
160
+
161
+
162
+ .. |test-status| image:: https://github.com/coveragepy/coveragepy/actions/workflows/testsuite.yml/badge.svg?branch=main&event=push
163
+ :target: https://github.com/coveragepy/coveragepy/actions/workflows/testsuite.yml
164
+ :alt: Test suite status
165
+ .. |quality-status| image:: https://github.com/coveragepy/coveragepy/actions/workflows/quality.yml/badge.svg?branch=main&event=push
166
+ :target: https://github.com/coveragepy/coveragepy/actions/workflows/quality.yml
167
+ :alt: Quality check status
168
+ .. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat
169
+ :target: https://coverage.readthedocs.io/en/7.13.1/
170
+ :alt: Documentation
171
+ .. |kit| image:: https://img.shields.io/pypi/v/coverage
172
+ :target: https://pypi.org/project/coverage/
173
+ :alt: PyPI status
174
+ .. |versions| image:: https://img.shields.io/pypi/pyversions/coverage.svg?logo=python&logoColor=FBE072
175
+ :target: https://pypi.org/project/coverage/
176
+ :alt: Python versions supported
177
+ .. |license| image:: https://img.shields.io/pypi/l/coverage.svg
178
+ :target: https://github.com/coveragepy/coveragepy/blob/main/LICENSE.txt
179
+ :alt: License
180
+ .. |metacov| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/nedbat/8c6980f77988a327348f9b02bbaf67f5/raw/metacov.json
181
+ :target: https://coveragepy.github.io/metacov-reports/latest.html
182
+ :alt: Coverage reports
183
+ .. |tidelift| image:: https://tidelift.com/badges/package/pypi/coverage
184
+ :target: https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme
185
+ :alt: Tidelift
186
+ .. |stars| image:: https://img.shields.io/github/stars/coveragepy/coveragepy.svg?logo=github&style=flat
187
+ :target: https://github.com/coveragepy/coveragepy/stargazers
188
+ :alt: GitHub stars
189
+ .. |mastodon-nedbat| image:: https://img.shields.io/badge/dynamic/json?style=flat&labelColor=450657&logo=mastodon&logoColor=ffffff&label=@nedbat&query=followers_count&url=https%3A%2F%2Fhachyderm.io%2Fapi%2Fv1%2Faccounts%2Flookup%3Facct=nedbat
190
+ :target: https://hachyderm.io/@nedbat
191
+ :alt: nedbat on Mastodon
192
+ .. |mastodon-coveragepy| image:: https://img.shields.io/badge/dynamic/json?style=flat&labelColor=450657&logo=mastodon&logoColor=ffffff&label=@coveragepy&query=followers_count&url=https%3A%2F%2Fhachyderm.io%2Fapi%2Fv1%2Faccounts%2Flookup%3Facct=coveragepy
193
+ :target: https://hachyderm.io/@coveragepy
194
+ :alt: coveragepy on Mastodon
195
+ .. |bluesky-nedbat| image:: https://img.shields.io/badge/dynamic/json?style=flat&color=96a3b0&labelColor=3686f7&logo=icloud&logoColor=white&label=@nedbat&url=https%3A%2F%2Fpublic.api.bsky.app%2Fxrpc%2Fapp.bsky.actor.getProfile%3Factor=nedbat.com&query=followersCount
196
+ :target: https://bsky.app/profile/nedbat.com
197
+ :alt: nedbat on Bluesky
198
+ .. |sponsor| image:: https://img.shields.io/badge/%E2%9D%A4-Sponsor%20me-brightgreen?style=flat&logo=GitHub
199
+ :target: https://github.com/sponsors/nedbat
200
+ :alt: Sponsor me on GitHub
@@ -0,0 +1,61 @@
1
+ a1_coverage.pth,sha256=7y7QbRmGfsZpwJqAQGBmapzV44OvCp0Rqi3nm3fUSOg,205
2
+ coverage/__init__.py,sha256=GMQuJPp0y2RmmQyvjbZPElOWk29-ypSJaqQEiVNgqq4,1045
3
+ coverage/__main__.py,sha256=rAq5mnzJvTfjnZxufsY-YoKZkHM81vdhkUsAmOU4wt8,297
4
+ coverage/annotate.py,sha256=pwaZmkb-Lmcsb4iXuK0AlIpPv8FmgSLekB-Kct_KsEs,3699
5
+ coverage/bytecode.py,sha256=ma10pM95-t3RPsRI4ZhhsvofoH7pfuQYSCZZiqfkf4k,6693
6
+ coverage/cmdline.py,sha256=mq7qHtODG4WeDYfJCSJYsCImmqBQfaG852Krfk2fHXc,38128
7
+ coverage/collector.py,sha256=6eTRllHErPUZ9zmW9zwZC5uvoJQYZ1FlCsrwUgaebZk,18558
8
+ coverage/config.py,sha256=cQ8V7njERglnVlnqWimRWvNgYNWbHDeTxyoDX02drbk,26007
9
+ coverage/context.py,sha256=Ef1NlMuuD5g2Z3vJhK9fr6yg_NxOYTJmGTACRLU1uno,2434
10
+ coverage/control.py,sha256=-lhGj9zzzoEMsj8ARjs4I_7NS2l0z_3pRiAukRUFyc8,55739
11
+ coverage/core.py,sha256=wQG--Xm1Hvyt_jYO7VgfP-CT2vE1o4zIbFI2CtfTsXw,5404
12
+ coverage/data.py,sha256=UrIbV1It27S84qibai7egXUmrmduQIBfp_j0i3MxAZY,8827
13
+ coverage/debug.py,sha256=shj-2wh50aGkt0YN1DAaOUo1Gc5Av8kug-dPo_fNl9M,21753
14
+ coverage/disposition.py,sha256=T6p5yH1b6dnnsXq7YI9nbP8UAqFk6V9PyFOivkV5Qr8,1897
15
+ coverage/env.py,sha256=_0HqQJiQIeY44ziVwiMohYIaox0btbc2fLoJMnSt1RI,4972
16
+ coverage/exceptions.py,sha256=VD6utQATQ5GRIAK0SPJyOlL2och54qRfVD9vlt9EElA,1640
17
+ coverage/execfile.py,sha256=IL3TzwhAxiMLs6QwUvF-HK-A2Scjgh8GjkpOKhcWFtY,11993
18
+ coverage/files.py,sha256=3rpBD9OqG4Nom6I0H-ueFqYIxnXNmtJHYHZwHKr2E7s,19516
19
+ coverage/html.py,sha256=pKgxowOlcegx-vOPUIypaWJQKmJGNl6JmLpawNlmr_8,31509
20
+ coverage/inorout.py,sha256=DP4g_0QiT7O3Np5oK7kqUXu5E0bBbhpq_JuFQh1SdVU,23483
21
+ coverage/jsonreport.py,sha256=WMXzJs14UCayISPrmThcrUTQJq_2S9ltwIQKG68m3qI,7493
22
+ coverage/lcovreport.py,sha256=lGpJ1x_bBk9jG2TxoFpfANY0oJCFxSBz6pqd0FiLMHY,7822
23
+ coverage/misc.py,sha256=v3-2WWQrepKmFRrc-ImJyabeNbtIPSksgTfpeMyXryQ,11613
24
+ coverage/multiproc.py,sha256=Y1AeYjch8pD4Zb5HjoW51IVz5yeLDY5-ipIOOk-Adyk,4175
25
+ coverage/numbits.py,sha256=4B171qTbHyZ0WDnYGjGo456_PC2jDZSe22F9KCrmZ4Q,4673
26
+ coverage/parser.py,sha256=58uy6mAQLkPiuB_arOqS7pKot0tv9RAa9uZUbblUy-c,46313
27
+ coverage/patch.py,sha256=j_LjSxvfSZrt1hns2iWQodKoK1lwaGdA_MTd_FSIar8,4149
28
+ coverage/phystokens.py,sha256=Z7chMvCxuYMu2Wj9Oc1vlO8dV1OOqZXWfzALsWfEC7s,7450
29
+ coverage/plugin.py,sha256=4fF3Bq9JVZIIxPUI-DCUGUqeGNzvYldJnqMvP6JlsKY,21509
30
+ coverage/plugin_support.py,sha256=4w3OU909yuXjq1tqLAZ8NttCdo3Auqi-bhZD6cGo3T0,10444
31
+ coverage/pth_file.py,sha256=855A1TBQhQLQyMFngt_yJCOf2m5UGilNtod_qUhwzB0,525
32
+ coverage/py.typed,sha256=_B1ZXy5hKJZ2Zo3jWSXjqy1SO3rnLdZsUULnKGTplfc,72
33
+ coverage/python.py,sha256=X6-ypbCYnJoihsSj1M5thX_kFRyHjN37ajOHQWo5F1E,8753
34
+ coverage/pytracer.py,sha256=1U0Xot-7TVsSe62h33ExLUW35_8WKbXA2LmdJjc3UKU,15349
35
+ coverage/regions.py,sha256=hIf6Hly1Zsfl4hPA2FQgDtDT6Lcv0fLlFCXmc94WOlY,4500
36
+ coverage/report.py,sha256=2DSYhd2KI2XklWRlBOMOPSuMczOVitRpTyFyU9G40Xk,10802
37
+ coverage/report_core.py,sha256=yZi3IfUSvkTr9-k7RGyNkDN3hlfd6p0_7G5Bjx7_Spg,3997
38
+ coverage/results.py,sha256=Ro_QNMRW0CoUnFnNsTfvb35g-klGxmyrKbAIykj-M4E,17255
39
+ coverage/sqldata.py,sha256=3dowlj5kGIZO8unwfKyG48kE-4aPnn_NPPcl6cof1Bc,47827
40
+ coverage/sqlitedb.py,sha256=rcv-iX5bb7h_VfMnmDvbJx8UZCrDvm1uzLzKerKFFjE,9327
41
+ coverage/sysmon.py,sha256=jP9V614r5Pagm21siH7Tm7lK3gYyQv7BsNg3OFswnTw,19545
42
+ coverage/templite.py,sha256=t8G9PGY3uSXpkjVVjqO_NFpv0LRM2J6BEJah8TVZG34,11334
43
+ coverage/tomlconfig.py,sha256=CeL-Qu6ptVmi7mLtaAtkD8mcC9LGRFz17G7hxhvyPA4,7616
44
+ coverage/tracer.cpython-314t-aarch64-linux-musl.so,sha256=mosQOTGPdRFQxhJuK2Xgsd83Rro_chKYGBkK5bVc24s,176152
45
+ coverage/tracer.pyi,sha256=53ZiaWNz6q6qWiEZWFMHeLLkbg6-4oBAzNJ2i1-hA-g,1207
46
+ coverage/types.py,sha256=jm6-PrFjbq8UdjneX6tW9KHroXSh_McYiH1Y-OwgNjE,5783
47
+ coverage/version.py,sha256=SYZdjEf6jjxGi8WLxWu8ys_SVuzVEw1R_B7PCXnmoJ8,1094
48
+ coverage/xmlreport.py,sha256=yvlv6SXiFvpib2rYOQ7r793DesQCrh6DaPj-OkG_fpY,9819
49
+ coverage/htmlfiles/coverage_html.js,sha256=c3j5ad-4xXqf3u_aBPpiNhoHYn2mTYsKmercXP2XW3M,25450
50
+ coverage/htmlfiles/favicon_32.png,sha256=vIEA-odDwRvSQ-syWfSwEnWGUWEv2b-Tv4tzTRfwJWE,1732
51
+ coverage/htmlfiles/index.html,sha256=8_Resfvt6vgAJs82-dF5gtKCjkPp8by8PMff4eWmMkU,8702
52
+ coverage/htmlfiles/keybd_closed.png,sha256=fZv4rmY3DkNJtPQjrFJ5UBOE5DdNof3mdeCZWC7TOoo,9004
53
+ coverage/htmlfiles/pyfile.html,sha256=iBCg74uV_XEcCTP2F02daNZYlIuzzh0vhsZi35zkpGU,6508
54
+ coverage/htmlfiles/style.css,sha256=osr6tQDYrIn-y6PU3z89rncqxP_ijH5Bzmx6SYpDKVI,16104
55
+ coverage/htmlfiles/style.scss,sha256=PrggL6jPrWjsNO067sQH6XpIgUmXCcFRCNIwdl50BCw,21409
56
+ coverage-7.13.1.dist-info/METADATA,sha256=u45O75Ts1JqJbZQ5R5pEtc-HWJwVJOdjXE-QMXBrlrI,8511
57
+ coverage-7.13.1.dist-info/WHEEL,sha256=Rmj_1p8w6vs03sA3piwr0LDCnhshdZofyeLRZQ_Y0EI,114
58
+ coverage-7.13.1.dist-info/entry_points.txt,sha256=R852LYwVpS6kifcrcAf-jyq6eXsx3IpMAmfMl6vKI6c,145
59
+ coverage-7.13.1.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
60
+ coverage-7.13.1.dist-info/RECORD,,
61
+ coverage-7.13.1.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314t-musllinux_1_2_aarch64
5
+
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ coverage = coverage.cmdline:main
3
+ coverage-3.14 = coverage.cmdline:main_deprecated
4
+ coverage3 = coverage.cmdline:main_deprecated
@@ -0,0 +1,177 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1 @@
1
+ coverage