-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.gitignore
81 lines (64 loc) · 1.2 KB
/
.gitignore
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
76
77
78
79
80
81
.venv/
archive/
wip/
# Byte-compiled Python files
__pycache__/
*.py[cod]
# Python environments
.env
# Jupyter Notebook checkpoints (if applicable)
.ipynb_checkpoints/
# Distribution / build directories
build/
dist/
*.egg-info/
pip-wheel-metadata/
.wheels/
# Python-specific packaging files
*.egg
*.egg-info/
*.eggs/
*.whl
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage results
htmlcov/
.coverage
.coverage.*
.cache
.nox/
pytest_cache/
.tox/
# IDE / Editor specific files (like PyCharm, VSCode, etc.)
.idea/
.vscode/
*.swp
*.swo
# OS-generated files
.DS_Store
Thumbs.db
# Log files
*.log
# Local testing (if you use Docker locally)
docker-compose.override.yml
# Ignore credentials and sensitive configuration files (e.g., if you use dotenv for local settings)
.env.local
.env.development
.env.qa
.env.production
# Pyinstaller files (for building binaries in Python CLI projects)
*.spec
pyinstaller/
# Wheel packaging
*.wheel/
# Poetry specific (if using Poetry as the package manager)
poetry.lock
# Coverage reports
.coverage
coverage.xml
*.cover # Coverage extension files
# PyTest cache
.cache/
# Sphinx documentation (if using for documentation generation)
docs/_build/