KaiquanMah commited on
Commit
2292b0b
·
verified ·
1 Parent(s): f01f652

Create gitignore

Browse files
Files changed (1) hide show
  1. gitignore +44 -0
gitignore ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Virtual environments
2
+ venv/
3
+ .env/
4
+
5
+ # Python bytecode
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+
10
+ # Jupyter Notebook checkpoints
11
+ .ipynb_checkpoints/
12
+
13
+ # Logs and temporary files
14
+ *.log
15
+ *.out
16
+ *.err
17
+ *.swp
18
+ *.swo
19
+ *.tmp
20
+ *.temp
21
+ *.~lock.*
22
+
23
+ # Test results
24
+ htmlcov/
25
+ .tox/
26
+ .coverage
27
+ .cache
28
+ .nox/
29
+
30
+ # Environment files
31
+ *.env
32
+ .envrc
33
+ .env.bak
34
+ .env.local
35
+
36
+ # Build artifacts
37
+ build/
38
+ dist/
39
+ *.egg-info/
40
+
41
+ # System files
42
+ .DS_Store
43
+ Thumbs.db
44
+ desktop.ini