blob: 8d9f86d75f544d2a44c10d926e1193762daecf9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Created by venv; see https://docs.python.org/3/library/venv.html
# Byte-compiled / cache files
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Virtual environment
venv/
env/
.venv/
ENV/
env.bak/
*.env
pyvenv.cfg
# VSCode or other IDE config
.vscode/
.idea/
# Mac / Linux hidden files
.DS_Store
Thumbs.db
# Compiled C files (if using C extensions)
*.so
# Jupyter Notebook checkpoints (if using notebooks)
.ipynb_checkpoints/
# Build/Distribution directories
build/
dist/
*.egg-info/
# Log files
*.log
# lib, lib64, bin folders (commonly part of venv)
lib/
lib64/
bin/
include/
|