Skip to content

Commit 870151f

Browse files
committed
fix: apply autopep8 formatting; cleanup: remove egg-info from repo
1 parent dbe0709 commit 870151f

File tree

7 files changed

+55
-238
lines changed

7 files changed

+55
-238
lines changed

.gitignore

Lines changed: 55 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,92 @@
1-
# Byte-compiled / optimized / DLL files
1+
# ============================================
2+
# Python bytecode
3+
# ============================================
24
__pycache__/
35
*.py[cod]
46
*$py.class
57

8+
# ============================================
69
# Distribution / packaging
10+
# ============================================
711
.Python
8-
env/
912
build/
10-
develop-eggs/
1113
dist/
12-
downloads/
13-
eggs/
14-
.eggs/
15-
lib/
16-
lib64/
17-
parts/
18-
sdist/
19-
var/
2014
*.egg-info/
21-
.installed.cfg
15+
.eggs/
2216
*.egg
17+
MANIFEST
2318

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/
2926

27+
# ============================================
3028
# Installer logs
31-
debug.log
29+
# ============================================
3230
pip-log.txt
3331
pip-delete-this-directory.txt
32+
debug.log
3433

35-
# Unit test / coverage reports
34+
# ============================================
35+
# Unit test / coverage
36+
# ============================================
3637
htmlcov/
3738
.tox/
3839
.nox/
3940
.coverage
4041
.coverage.*
4142
.cache
43+
.pytest_cache/
4244
nosetests.xml
4345
coverage.xml
4446
*.cover
4547
.hypothesis/
46-
.pytest_cache/
47-
48-
# Jupyter Notebook
49-
.ipynb_checkpoints
5048

51-
# pyenv
52-
.python-version
53-
54-
# mypy
49+
# ============================================
50+
# Type checker
51+
# ============================================
5552
.mypy_cache/
5653
.dmypy.json
5754

58-
# VS Code
55+
# ============================================
56+
# Jupyter Notebook
57+
# ============================================
58+
.ipynb_checkpoints/
59+
60+
# ============================================
61+
# IDE / Editor
62+
# ============================================
5963
.vscode/
64+
.idea/
6065

61-
# macOS
66+
# ============================================
67+
# OS files
68+
# ============================================
6269
.DS_Store
70+
Thumbs.db
6371

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
6977

78+
# ============================================
7079
# GitHub Actions temp
80+
# ============================================
7181
.github/.tmp/
82+
83+
# ============================================
84+
# PyInstaller
85+
# ============================================
86+
*.manifest
87+
*.spec
88+
89+
# ============================================
90+
# Misc
91+
# ============================================
92+
.python-version

sentinel_ai_cli.egg-info/PKG-INFO

Lines changed: 0 additions & 186 deletions
This file was deleted.

sentinel_ai_cli.egg-info/SOURCES.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

sentinel_ai_cli.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

sentinel_ai_cli.egg-info/entry_points.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

sentinel_ai_cli.egg-info/requires.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

sentinel_ai_cli.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)