-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.gitignore
44 lines (35 loc) · 842 Bytes
/
.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
# Ignore Python virtual environment and environment variable files
venv/
.env
# Ignore Python's cache files which stores intermediate byte code files
__pycache__/
*.pyc
*.pyo
*.py[cod]
**/__pycache__/
# Ignore Python distribution/build files (from setuptools, distutils, etc.)
dist/
build/
*.egg-info/
*.egg
*.eggs
*.egg-info/
# Ignore Jupyter Notebook .ipynb checkpoints
.ipynb_checkpoints/
# Ignore files related to packaging (such as the ones generated by 'python setup.py sdist' or 'python setup.py bdist_wheel')
MANIFEST
# Ignore PyInstaller build outputs
*.spec
dist/
build/
# Ignore log files
*.log
# Ignore temporary files that are often created by editors and tools
temp/
*.tmp
*.temp
# Ignore Visual Studio Code files and workspace settings
.vscode/
*.code-workspace
# Default output folder when running this program
docs/