mgbam commited on
Commit
bcc6642
·
verified ·
1 Parent(s): 3367cd0

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +16 -6
.gitignore CHANGED
@@ -1,6 +1,16 @@
1
- .env
2
- __pycache__/
3
- venv/
4
- *.pyc
5
- *.pyo
6
- *.pyd
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment variables
2
+ .env
3
+
4
+ # Python artifacts
5
+ __pycache__/
6
+ *.pyc
7
+ *.pyo
8
+ *.pyd
9
+ .Python
10
+ env/
11
+ venv/
12
+ pip-selfcheck.json
13
+
14
+ # IDE settings
15
+ .idea/
16
+ .vscode/