Skip to content

Commit ae63016

Browse files
add .gitignore to Enhance Project Cleanliness and Security (#25)
* Add .gitignore to prevent tracking unnecessary files * Update .gitignore Following suggestion to not ignore .python-version and to ignore .venv --------- Co-authored-by: Jonathan Taylor <[email protected]>
1 parent e2a7c24 commit ae63016

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Jupyter Notebook
7+
.ipynb_checkpoints/
8+
*.ipynb_checkpoints/
9+
*.ipynb_meta
10+
11+
# Python environments
12+
env/
13+
venv/
14+
.venv/
15+
ENV/
16+
env.bak/
17+
venv.bak/
18+
.spyderproject
19+
.spyproject
20+
.ropeproject
21+
22+
# Distribution / packaging
23+
.Python
24+
build/
25+
develop-eggs/
26+
dist/
27+
downloads/
28+
eggs/
29+
.eggs/
30+
lib/
31+
lib64/
32+
parts/
33+
sdist/
34+
var/
35+
wheels/
36+
pip-wheel-metadata/
37+
share/python-wheels/
38+
*.egg-info/
39+
.installed.cfg
40+
*.egg
41+
42+
# PyInstaller
43+
*.manifest
44+
*.spec
45+
46+
# Operating System
47+
.DS_Store
48+
49+
# IDEs
50+
.vscode/
51+
.idea/

0 commit comments

Comments
 (0)