-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (34 loc) · 661 Bytes
/
Copy path.gitignore
File metadata and controls
45 lines (34 loc) · 661 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
# ========================== #
# Template Repo Only #
# ========================== #
# Local environment for running copier / tests against this template
.venv*
# Tool caches
.cache/
# AI agent working files
.claude/
# Generated test outputs (from tests/test_generate.py in Phase 5)
tests/_generated/
# ========================== #
# Python #
# ========================== #
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
build/
dist/
*.egg-info/
*.egg
# Unit test / coverage reports
.pytest_cache/
.coverage
.coverage.*
htmlcov/
# Type checker caches
.mypy_cache/
.ruff_cache/
# Environments
.env
env/
venv/