-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
76 lines (66 loc) · 1.06 KB
/
.gitignore
File metadata and controls
76 lines (66 loc) · 1.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# --- Python bytecode / caches ---
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.cache/
# --- Virtual envs & tools ---
.venv/
venv/
.env/
.env.*
.nox/
.tox/
.rye/
.python-version
pip-wheel-metadata/
pip-log.txt
# --- Packaging / build artifacts ---
build/
dist/
*.egg-info/
*.egg
.eggs/
# --- Coverage / testing ---
.coverage
.coverage.*
htmlcov/
coverage.xml
pytestdebug.log
# --- Type checkers & linters ---
.mypy_cache/
.pyre/
.pytype/
.ruff_cache/
# --- Sphinx / RTD docs ---
# Primary Sphinx build dir (often inside docs/)
docs/_build/
_build/
# If you autogenerate API docs, ignore the output dir
docs/_autosummary/
docs/api/
# Sphinx-gallery & plots (if used)
docs/auto_examples/
docs/generated/
docs/_images/
docs/_plots/
# --- Jupyter / MyST notebooks (if used) ---
.ipynb_checkpoints/
.jupyter_cache/
.jupyter/
**/.ipynb_checkpoints/
# --- Editors / IDEs ---
.vscode/
.idea/
*.swp
*.swo
# --- OS-specific ---
.DS_Store
Thumbs.db
Icon?
ehthumbs.db
# --- Node (only if you build theme assets locally) ---
node_modules/
npm-debug.log*
yarn-error.log
pnpm-lock.yaml