mingru-scans 0.1.0__tar.gz

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.
@@ -0,0 +1,107 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+ *.dylib
9
+ *.dll
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ build/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # Virtual environments / Conda envs
31
+ .env
32
+ .venv
33
+ venv/
34
+ ENV/
35
+ env/
36
+ env.bak/
37
+ venv.bak/
38
+ .conda/
39
+
40
+ # Python version / tool files
41
+ .python-version
42
+
43
+ # Testing / coverage
44
+ .pytest_cache/
45
+ .coverage
46
+ .coverage.*
47
+ htmlcov/
48
+ .tox/
49
+ .nox/
50
+ .cache
51
+ coverage.xml
52
+ nosetests.xml
53
+ *.cover
54
+ *.py,cover
55
+ .hypothesis/
56
+
57
+ # Type checkers / linters
58
+ .mypy_cache/
59
+ .dmypy.json
60
+ dmypy.json
61
+ .pyre/
62
+ .pytype/
63
+ .ruff_cache/
64
+
65
+ # Jupyter
66
+ .ipynb_checkpoints/
67
+
68
+ # Logs
69
+ *.log
70
+ pip-log.txt
71
+ pip-delete-this-directory.txt
72
+
73
+ # IDE / editor
74
+ .vscode/
75
+ .idea/
76
+ .zed/
77
+
78
+ # OS files
79
+ .DS_Store
80
+ Thumbs.db
81
+
82
+ # Local secrets / config
83
+ .env.local
84
+ .env.*.local
85
+
86
+ # SQLite
87
+ *.sqlite3
88
+ *.db
89
+
90
+ # PyTorch / model artifacts
91
+ *.pt
92
+ *.pth
93
+ *.ckpt
94
+
95
+ # Misc
96
+ __pycache__/
97
+ .claude/
98
+ .ruff_cache/
99
+ .DS_Store
100
+
101
+ # Python packaging / tooling
102
+ build/
103
+ dist/
104
+ *.egg-info/
105
+ .pytest_cache/
106
+ .venv/
107
+ site/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Chris Santiago
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.