freeview 0.0.1__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,47 @@
1
+ /.*
2
+ /!.gitignore
3
+ **/.*
4
+ **/__pycache__/
5
+ **/.ipynb_checkpoints/
6
+
7
+ /.pypirc
8
+
9
+ # Ignore generated outputs and caches for the freeview package
10
+ output/
11
+ __pycache__/
12
+ *.pyc
13
+ .venv/
14
+ .env
15
+ certs/
16
+
17
+ # Packaging and build artifacts
18
+ dist/
19
+ build/
20
+ *.egg-info/
21
+ pip-wheel-metadata/
22
+
23
+ # Virtualenvs
24
+ venv/
25
+ env/
26
+ freeviewer/
27
+ freeviewer_*/
28
+
29
+ # Editor / OS files
30
+ .DS_Store
31
+ .vscode/
32
+ .idea/
33
+
34
+ # Test / cache
35
+ .pytest_cache/
36
+ .mypy_cache/
37
+ .ruff_cache/
38
+ .tox/
39
+
40
+ # Keys / certs (do not commit private keys)
41
+ *.pem
42
+ *.key
43
+
44
+ # Coverage / misc
45
+ .coverage
46
+ *.log
47
+