|
1 | | -# Byte-compiled / optimized / DLL files |
| 1 | +# ============================================ |
| 2 | +# Python bytecode |
| 3 | +# ============================================ |
2 | 4 | __pycache__/ |
3 | 5 | *.py[cod] |
4 | 6 | *$py.class |
5 | 7 |
|
| 8 | +# ============================================ |
6 | 9 | # Distribution / packaging |
| 10 | +# ============================================ |
7 | 11 | .Python |
8 | | -env/ |
9 | 12 | build/ |
10 | | -develop-eggs/ |
11 | 13 | dist/ |
12 | | -downloads/ |
13 | | -eggs/ |
14 | | -.eggs/ |
15 | | -lib/ |
16 | | -lib64/ |
17 | | -parts/ |
18 | | -sdist/ |
19 | | -var/ |
20 | 14 | *.egg-info/ |
21 | | -.installed.cfg |
| 15 | +.eggs/ |
22 | 16 | *.egg |
| 17 | +MANIFEST |
23 | 18 |
|
24 | | -# PyInstaller |
25 | | -# Usually these files are written by a python script from a template |
26 | | -# before PyInstaller builds the exe, so as to inject date/other infos into it. |
27 | | -*.manifest |
28 | | -*.spec |
| 19 | +# ============================================ |
| 20 | +# Virtual environments |
| 21 | +# ============================================ |
| 22 | +env/ |
| 23 | +venv/ |
| 24 | +.venv/ |
| 25 | +ENV/ |
29 | 26 |
|
| 27 | +# ============================================ |
30 | 28 | # Installer logs |
31 | | -debug.log |
| 29 | +# ============================================ |
32 | 30 | pip-log.txt |
33 | 31 | pip-delete-this-directory.txt |
| 32 | +debug.log |
34 | 33 |
|
35 | | -# Unit test / coverage reports |
| 34 | +# ============================================ |
| 35 | +# Unit test / coverage |
| 36 | +# ============================================ |
36 | 37 | htmlcov/ |
37 | 38 | .tox/ |
38 | 39 | .nox/ |
39 | 40 | .coverage |
40 | 41 | .coverage.* |
41 | 42 | .cache |
| 43 | +.pytest_cache/ |
42 | 44 | nosetests.xml |
43 | 45 | coverage.xml |
44 | 46 | *.cover |
45 | 47 | .hypothesis/ |
46 | | -.pytest_cache/ |
47 | | - |
48 | | -# Jupyter Notebook |
49 | | -.ipynb_checkpoints |
50 | 48 |
|
51 | | -# pyenv |
52 | | -.python-version |
53 | | - |
54 | | -# mypy |
| 49 | +# ============================================ |
| 50 | +# Type checker |
| 51 | +# ============================================ |
55 | 52 | .mypy_cache/ |
56 | 53 | .dmypy.json |
57 | 54 |
|
58 | | -# VS Code |
| 55 | +# ============================================ |
| 56 | +# Jupyter Notebook |
| 57 | +# ============================================ |
| 58 | +.ipynb_checkpoints/ |
| 59 | + |
| 60 | +# ============================================ |
| 61 | +# IDE / Editor |
| 62 | +# ============================================ |
59 | 63 | .vscode/ |
| 64 | +.idea/ |
60 | 65 |
|
61 | | -# macOS |
| 66 | +# ============================================ |
| 67 | +# OS files |
| 68 | +# ============================================ |
62 | 69 | .DS_Store |
| 70 | +Thumbs.db |
63 | 71 |
|
64 | | -# PyCharm |
65 | | -.idea/ |
66 | | - |
67 | | -# Local env |
68 | | -venv/ |
| 72 | +# ============================================ |
| 73 | +# Logs (IMPORTANT for Sentinel AI CLI) |
| 74 | +# ============================================ |
| 75 | +*.log |
| 76 | +sentinel_ai.log |
69 | 77 |
|
| 78 | +# ============================================ |
70 | 79 | # GitHub Actions temp |
| 80 | +# ============================================ |
71 | 81 | .github/.tmp/ |
| 82 | + |
| 83 | +# ============================================ |
| 84 | +# PyInstaller |
| 85 | +# ============================================ |
| 86 | +*.manifest |
| 87 | +*.spec |
| 88 | + |
| 89 | +# ============================================ |
| 90 | +# Misc |
| 91 | +# ============================================ |
| 92 | +.python-version |
0 commit comments