-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
62 lines (49 loc) · 1.02 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
# Ignore Python bytecode and compiled files
__pycache__/
*.py[cod]
*$py.class
# Ignore virtual environments and Python environment directories
env/
venv/
ENV/
env.bak/
venv.bak/
# Ignore distribution / packaging files
dist/
build/
*.egg-info/
*.eggs
*.whl
*.wheel
# Ignore logs
*.log
# Ignore coverage and test reports
.coverage
htmlcov/
.tox/
.pytest_cache/
# Ignore tools for specific IDEs and editors
.vscode/
.idea/
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints
# Ignore OS generated files
.DS_Store
Thumbs.db
Desktop.ini
# Ignore environment configuration files
*.env
# Ignore project-specific files
water_tracker.py
readme.md
# Ignore anything in the "survival_tools" directory that might be unnecessary
survival_tools/__pycache__/
survival_tools/*.pyc
survival_tools/*.pyo
# Ignore Python environment and package management files
pip-log.txt
pip-delete-this-directory.txt
# Ignore unnecessary Git management files
*.orig
# Ignore Batch file
*.bat