-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (51 loc) · 739 Bytes
/
.gitignore
File metadata and controls
59 lines (51 loc) · 739 Bytes
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
# Ignore all wheels except Python 3.12 ones (which are committed to repo root)
dlib-19.24-cp311-cp311-linux_*.whl
dlib-19.24-cp313-cp313-linux_*.whl
dlib-19.24-cp314-cp314-linux_*.whl
*.tar.gz
# Virtual environments
venv/
env/
ENV/
.venv/
.env/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Dlib specific
dlib/
*.dylib
*.dll
# Build artifacts
*.o
*.a
*.so.*
cmake-build-*/
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
# Logs
*.log
logs/
# Temporary files
*.tmp
*.temp
.cache/
# Note: Python 3.12 wheels are intentionally committed to repo root for direct download
# These are added by CI workflow and should not be ignored