xttmp 2.3.0__py3-none-any.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 (45) hide show
  1. xttmp/__init__.py +1 -0
  2. xttmp/api/__init__.py +5 -0
  3. xttmp/api/evaluate.py +163 -0
  4. xttmp/api/get_visualize_handle.py +29 -0
  5. xttmp/api/instancing_model.py +35 -0
  6. xttmp/core/__init__.py +0 -0
  7. xttmp/core/apgstmd_core.py +188 -0
  8. xttmp/core/apgstmdv2_core.py +79 -0
  9. xttmp/core/base_core.py +36 -0
  10. xttmp/core/dstmd_core.py +213 -0
  11. xttmp/core/estmd_backbone.py +110 -0
  12. xttmp/core/estmd_core.py +356 -0
  13. xttmp/core/feedbackstmd_core.py +61 -0
  14. xttmp/core/fracstmd_core.py +98 -0
  15. xttmp/core/fstmd_core.py +15 -0
  16. xttmp/core/fstmdv2_core.py +42 -0
  17. xttmp/core/haarstmd_core.py +140 -0
  18. xttmp/core/math_operator.py +307 -0
  19. xttmp/core/stfeedbackstmd_core.py +233 -0
  20. xttmp/core/stmdplus_core.py +187 -0
  21. xttmp/core/stmdplusv2_core.py +82 -0
  22. xttmp/core/vstmd_core.py +420 -0
  23. xttmp/demo/evaluate_model.py +92 -0
  24. xttmp/demo/inference_gui.py +148 -0
  25. xttmp/demo/inference_gui_single_process.py +134 -0
  26. xttmp/demo/inference_image_stream.py +67 -0
  27. xttmp/demo/inference_video.py +66 -0
  28. xttmp/main.py +14 -0
  29. xttmp/model/__init__.py +13 -0
  30. xttmp/model/backbone.py +514 -0
  31. xttmp/model/facilitated_model.py +230 -0
  32. xttmp/model/feedback_model.py +271 -0
  33. xttmp/model/haarstmd.py +61 -0
  34. xttmp/model/vstmd.py +457 -0
  35. xttmp/util/__init__.py +0 -0
  36. xttmp/util/compute_module.py +402 -0
  37. xttmp/util/create_kernel.py +363 -0
  38. xttmp/util/evaluate_module.py +697 -0
  39. xttmp/util/iostream.py +660 -0
  40. xttmp-2.3.0.dist-info/METADATA +85 -0
  41. xttmp-2.3.0.dist-info/RECORD +45 -0
  42. xttmp-2.3.0.dist-info/WHEEL +5 -0
  43. xttmp-2.3.0.dist-info/entry_points.txt +2 -0
  44. xttmp-2.3.0.dist-info/licenses/LICENSE +201 -0
  45. xttmp-2.3.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.4
2
+ Name: xttmp
3
+ Version: 2.3.0
4
+ Summary: eXtremely Tiny Target - Motion Perception
5
+ Author-email: Shawn MX <mingshuoxu@hotmail.com>
6
+ Project-URL: Homepage, https://github.com/MingshuoXu/Small-Target-Motion-Detectors
7
+ Project-URL: Source, https://github.com/MingshuoXu/Small-Target-Motion-Detectors
8
+ Project-URL: Issues, https://github.com/MingshuoXu/Small-Target-Motion-Detectors/issues
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Image Recognition
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: matplotlib
24
+ Requires-Dist: opencv-python
25
+ Requires-Dist: scipy
26
+ Requires-Dist: torch>=2.5.0
27
+ Requires-Dist: torchvision>=0.20.0
28
+ Dynamic: license-file
29
+
30
+ # Small Target Motion Detectors, Version 2.3 (XTT-MP: Extremely Tiny Target - Motion Perception)
31
+
32
+ [![PyPI version](https://img.shields.io/pypi/v/XTT-MP.svg)](https://pypi.org/project/XTT-MP/) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) [![Python](https://img.shields.io/badge/python-3.8%2B-blue)](https://www.python.org/) [![PyTorch](https://img.shields.io/badge/pytorch-1.10%2B-ee4c2c)](https://pytorch.org/)
33
+
34
+
35
+ **XTT-MP** (Extremely Tiny Target - Motion Perception) is a natural architecture-based framework specifically designed for detecting and perceiving the motion of **extremely small targets** in complex environments.
36
+
37
+ This release is torch-first: CPU, CUDA, and Apple platforms all use the same torch tensor path, so there is no longer a numpy-only CPU branch to maintain. The model layer now follows a standard `nn.Module` flow with `__init__` and `forward`, while core blocks keep their internal lifecycle helpers such as `setup` and `reset_buffer`.
38
+
39
+ Built with modularity and extensibility in mind, XTT-MP provides a robust suite of tools for researchers and developers to iterate on tiny-object detection and motion analysis algorithms.
40
+
41
+ ---
42
+
43
+ ## ✨ Key Features
44
+
45
+ - **Tiny Target Specialist**: Optimized feature extraction and attention mechanisms tailored for sub-8x8 pixel objects.
46
+ - **Motion-Aware Architecture**: Integrated spatiotemporal modules to enhance temporal consistency and motion trajectory estimation.
47
+ - **Decoupled Design**: model and core layers are separated cleanly, which makes future learning modules easier to integrate.
48
+ - **Torch-Only Runtime**: inference and post-processing stay in torch tensors on both CPU and GPU, with Apple users able to run the same code path without a CUDA-specific fallback.
49
+
50
+ ## 📦 Installation
51
+
52
+ ### Prerequisites
53
+ - Python 3.8+
54
+ - PyTorch 1.10+
55
+ - CUDA 11.3+ (optional, for NVIDIA acceleration)
56
+ - Apple Silicon or macOS users can use the same torch-based workflow without numpy-specific CPU code.
57
+
58
+ ### Version Notes
59
+ - Model classes now expose the standard `__init__` + `forward` flow.
60
+ - Core classes provide lifecycle helpers such as `setup` and `reset_buffer`.
61
+ - CPU and GPU outputs are both represented as torch tensors.
62
+
63
+ ### Example Resources
64
+ - Example data and demo assets stay in the GitHub repository under `example-data/`.
65
+ - They are not packaged into the PyPI distribution.
66
+ - After `pip install xttmp`, use the installed code and bring your own input data, or run from a repository checkout to access the bundled examples.
67
+
68
+ ### Via PyPI
69
+ ```bash
70
+ pip install xttmp
71
+ xttmp-gui
72
+ ```
73
+
74
+ ### Citation
75
+
76
+ If you find this project useful for your research, please consider citing by this.
77
+ ```
78
+ @misc{STMDgit,
79
+ author = {Xu, Mingshuo},
80
+ title = {Small-Target-Motion-Detectors, Version 2},
81
+ year = {2024},
82
+ url = {https://github.com/MingshuoXu/Small-Target-Motion-Detectors},
83
+ note = {Accessed: 2025-12-12}
84
+ }
85
+ ```
@@ -0,0 +1,45 @@
1
+ xttmp/__init__.py,sha256=1W3RkAt0T2naEtt2Gq3R9Mp8xBXpZMSbOUKHzvzz1HA,34
2
+ xttmp/main.py,sha256=IOnOgQAjVqIT2WUPmPlv6kZ-T3yKFS7WP97IFpDmfwU,301
3
+ xttmp/api/__init__.py,sha256=XsHRFRcUgn_U-MQIZj19_GiJjHKmGAnJ9knKmr68prM,167
4
+ xttmp/api/evaluate.py,sha256=xHlqYCH0J5knQQy_3QTPvGkyoBM67Dzakha_z83Ouiw,5472
5
+ xttmp/api/get_visualize_handle.py,sha256=ypGl9e1ie6uNhyTA5cCe--ANx2T3wHWpjQzn96gtjDM,964
6
+ xttmp/api/instancing_model.py,sha256=1oEPr1_dOIDL3vmvBhxxj486EuKRFfkPaWxj_xn_TcY,907
7
+ xttmp/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ xttmp/core/apgstmd_core.py,sha256=D_aLtzc2ARri93TGvqCCHbiC9S11hNHngI7XJc-3zjc,6645
9
+ xttmp/core/apgstmdv2_core.py,sha256=yKhtctFVufAfj0NU4MRksKf44ZXDbbVgZIizhM3loc4,2398
10
+ xttmp/core/base_core.py,sha256=qTZUTZLcTurc4y4kzjK4spdw7HmoycKVxsmq1vSNT2A,653
11
+ xttmp/core/dstmd_core.py,sha256=1_9cjUjB1TGQQlTFjfqaJNJKYR5IG_rH4_DX7DyZ5Sk,7537
12
+ xttmp/core/estmd_backbone.py,sha256=xxAcPU-ki8TLVxbWS4TJ3Wjxl4alrjX6llw35I5o0UU,3288
13
+ xttmp/core/estmd_core.py,sha256=22msfoJi73DxvETNPcYf9iAiAHphTyh9i-kYPcEtDHs,10873
14
+ xttmp/core/feedbackstmd_core.py,sha256=uC35477S2C6lVJ8fU7YkfUu80aeH913g5ObkSJMLMyE,2170
15
+ xttmp/core/fracstmd_core.py,sha256=YtX972hBjzUmvQPor1ihpcBgpp2_wIQKpng7Y_wlQ5M,3111
16
+ xttmp/core/fstmd_core.py,sha256=7WJVvv_m8jKecLgNfTPWwXzJblpE1vKjA5NEm3zC4Fg,427
17
+ xttmp/core/fstmdv2_core.py,sha256=RjZ3cZUgraunhsABGIFWzep7ccx-SB_aHPYNSH8kahQ,1357
18
+ xttmp/core/haarstmd_core.py,sha256=XSW_D4o0d2zGgSaLeVJwJ_4UUqxIkVo-22nwYWn1Up0,5734
19
+ xttmp/core/math_operator.py,sha256=rCUioqULDV-9FEmBRqIVorBJCSDxwEUdKVtQhFY-jfM,11699
20
+ xttmp/core/stfeedbackstmd_core.py,sha256=3oOQ8Amyqt5Z1Yzp87fQD8rfK7WWLwRD8q9rWoV8Vo0,8319
21
+ xttmp/core/stmdplus_core.py,sha256=fFQYTb-Ny0pocvGItvKOP0GbjnJYP629XItUmr1FcDU,8394
22
+ xttmp/core/stmdplusv2_core.py,sha256=5sL1US4qml7_L-oc8rKJ4fkl2JqTQCXmTn3i9sgjDTI,3063
23
+ xttmp/core/vstmd_core.py,sha256=g-MwvYcvsxzlJZbc2idzhp57sKMcS-v7bFoBB74NbvQ,15287
24
+ xttmp/demo/evaluate_model.py,sha256=6IMCFvC7vMojyT81mK8dScrViyV2Hk6g6GC89lJcmDM,3430
25
+ xttmp/demo/inference_gui.py,sha256=G-oGw6oSkkpAhCe2yk1SjOUrBh_iJKkHqDe2KdJcte8,5460
26
+ xttmp/demo/inference_gui_single_process.py,sha256=VoYePYaFQnEDtkqRpfUXulKs3B9kHEaN8dGHEWRBR6U,4673
27
+ xttmp/demo/inference_image_stream.py,sha256=VSyQLSDH3iRDo-F5fYZqojPACrPRwo36uv--8nJWWTA,2041
28
+ xttmp/demo/inference_video.py,sha256=d8EYxoQIsVOMivdkeWjdyyITYpNGW_rBE-xXsa-akXs,2035
29
+ xttmp/model/__init__.py,sha256=gav-Fo1x7wScAzohzqZ2S_9viedm0xTl53uFL_sQvBk,562
30
+ xttmp/model/backbone.py,sha256=o_6Hys_inHQGIZvvSUEAP5qrPVt4IcesXU02cAB1ewc,22482
31
+ xttmp/model/facilitated_model.py,sha256=o6_ypSNQo6pdgjhobWCTlNYN3ENT1Gd0N52pJjEokPU,10090
32
+ xttmp/model/feedback_model.py,sha256=IDEaGb9iaIKV7acIlpSAOYgLa1E5HC-HOq2P8ZDy0BA,10303
33
+ xttmp/model/haarstmd.py,sha256=fyYkApeFtZCkvvz0zNhyAlcB4kY0HqxaCMwURFwit5Y,2176
34
+ xttmp/model/vstmd.py,sha256=k0EdwSVh3HS5G6Te6SPUgHs--ZELWSlI9NOi47i1GzQ,16381
35
+ xttmp/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ xttmp/util/compute_module.py,sha256=CVZf8HH5OfEdOf7id1oOxlnuJ33g0EtGAnkNDVyFaWQ,12380
37
+ xttmp/util/create_kernel.py,sha256=FAMOnZ5ry55gsqLrcAv-q4oD0TKFaSi0KrXlfrkHAmU,12844
38
+ xttmp/util/evaluate_module.py,sha256=14D4AmWsfOBM2HtB6Q6pPRENSupNmmtMj7so05lmnW0,27937
39
+ xttmp/util/iostream.py,sha256=EeiWe5IDCIRAja5te9s0m28Rjuc_KnIRHo7brRLHK_4,26546
40
+ xttmp-2.3.0.dist-info/licenses/LICENSE,sha256=g6mqXg3HVkaCzj3DIMKsuOTqiZVY7Mo6qzt-66swTqA,10581
41
+ xttmp-2.3.0.dist-info/METADATA,sha256=SVc9yytDKPkMwOPTi3n-ajRQ6U4rR5f8ZxD8mNrCheo,4253
42
+ xttmp-2.3.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
43
+ xttmp-2.3.0.dist-info/entry_points.txt,sha256=jdk6DA-szNHIl8s5nY7vkIQnU-m9DA3NyHlYaX11-QA,46
44
+ xttmp-2.3.0.dist-info/top_level.txt,sha256=lok2PfgxSEKjxlcnaW62x7qd9mg8JS0Pqx9DJW-Yo5Y,6
45
+ xttmp-2.3.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ xttmp-gui = xttmp.main:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including the
49
+ original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable by
79
+ such Contributor that are necessarily infringed by their Contribution(s)
80
+ alone or by combination of their Contribution(s) with the Work to
81
+ which such Contribution(s) was submitted. If You institute patent
82
+ litigation against any entity (including a cross-claim or counterclaim
83
+ in a lawsuit) alleging that the Work or a Contribution incorporated
84
+ within the Work constitutes direct or contributory patent infringement,
85
+ then any patent licenses granted to You under this License for that
86
+ Work shall terminate as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You meet
91
+ the following conditions:
92
+
93
+ a. You must give any other recipients of the Work or Derivative
94
+ Works a copy of this License; and
95
+
96
+ b. You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ c. You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, patent, trademark, and
101
+ attribution notices from the Source form of the Work,
102
+ excluding those notices that do not pertain to any part of
103
+ the Derivative Works; and
104
+
105
+ d. If the Work includes a "NOTICE" text file as part of its
106
+ distribution, then any Derivative Works that You distribute
107
+ must include a readable copy of the attribution notices
108
+ contained within such NOTICE file, excluding those notices
109
+ that do not pertain to any part of the Derivative Works,
110
+ in at least one of the following places: within a NOTICE text
111
+ file distributed as part of the Derivative Works; within the
112
+ Source form or documentation, if provided along with the
113
+ Derivative Works; or, within a display generated by the
114
+ Derivative Works, if and wherever such third-party notices
115
+ normally appear. The contents of the NOTICE file are for
116
+ informational purposes only and do not modify the License.
117
+ You may add Your own attribution notices within Derivative
118
+ Works that You distribute, alongside or as an addendum to the
119
+ NOTICE text from the Work, provided that such additional
120
+ attribution notices cannot be construed as modifying the
121
+ License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all other
162
+ commercial damages or losses), even if such Contributor has been
163
+ advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only on
170
+ Your own behalf and on Your sole responsibility, not on behalf of
171
+ any other Contributor, and only if You agree to indemnify, defend,
172
+ and hold each Contributor harmless for any liability incurred by,
173
+ or claims asserted against, such Contributor by reason of your
174
+ accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 Shawn MX
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ xttmp