-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (51 loc) · 1.6 KB
/
Copy path.gitignore
File metadata and controls
59 lines (51 loc) · 1.6 KB
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
# ==============================================================================
# 1. CMAKE & C++ BUILD ARTIFACTS
# ==============================================================================
# Local CMake build directories (if you run standard out-of-source cmake builds)
/build/
/build-*/
CMakeUserPresets.json
# If you run editable installs (uv pip install -e .), scikit-build-core uses
# an isolated temporary directory to compile the binary extensions.
_skbuild/
# Object files, static libraries, and precompiled headers
*.o
*.obj
*.a
*.lib
*.gch
*.pch
# ==============================================================================
# 2. LOCAL EXTENSION MODULES (CRITICAL FOR EDITABLE DEV)
# ==============================================================================
# When scikit-build-core injects the compiled C++ extension directly into
# your Python source tree, it builds platform-specific shared libraries.
*.so
*.pyd
*.dll
*.dylib
# Compiled Python distribution bundles
/dist/
/wheels/
*.egg-info/
# ==============================================================================
# 3. PYTHON & UV ARTIFACTS
# ==============================================================================
__pycache__/
*.py[cod]
*$py.class
# Testing caches
.pytest_cache/
.coverage
.coverage.*
htmlcov/
# Virtual Environments
.venv/
.env
# ==============================================================================
# 4. SYSTEM & IDE
# ==============================================================================
.DS_Store
.vscode/
.idea/
/CMakeSettings.json