-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
84 lines (67 loc) · 1.24 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
# Compiled Python files
*.pyc
*.pyo
__pycache__
**.DS_Store
# Compiled C extension files
*.so
# Distribution directories
dist/
build/
*.egg-info/
# Python Virtual Environment
.venv/
venv/
env/
*.env
pip-selfcheck.json
.venv/
# Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Local development configuration
local_settings.py
# macOS-specific files
.DS_Store
# Editor/IDE specific files
.idea/
.vscode/
# Compiled files for Cython
*.c
*.cpp
*.html
*.pyd
*.pyi
# Logs and other temporary files
*.log
*.tmp
*.tmp.*
*.bak
*.swp
# Ignore credentials and sensitive data (customize as needed)
credentials.ini
secrets.json
# Result folder
results
result
# coverage test
.coverage
htmlcov
coverage.xml
coverage_html_report
# Ignore dependencies (e.g., created by Poetry, pipenv, etc.)
# Uncomment if using a dependency management tool like Poetry, pipenv, etc.
# poetry.lock
# Pipfile.lock
# Pipfile
# pyproject.toml
# Ignore virtual environments for Anaconda
# Uncomment if using Anaconda/Miniconda environments
# .conda/
# .condarc
# Ignore conda environment YAML files
# Uncomment if using conda to manage environments
# environment.yml
# environment.yaml
# Custom ignore patterns (add any additional patterns as needed)
# example_pattern/
# another_pattern/