Michael Hu commited on
Commit
875a169
·
1 Parent(s): 28a10f3

add gitignore file

Browse files
Files changed (1) hide show
  1. .gitignore +47 -0
.gitignore ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Distribution / packaging
7
+ .eggs/
8
+ dist/
9
+ build/
10
+ sdist/
11
+ *.egg-info/
12
+ *.wheel
13
+ tmp/
14
+
15
+ # Installed packages
16
+ **/lib/*
17
+ **/lib64/*
18
+ #Uncomment if you are using venv
19
+ #venv/
20
+ #Uncomment if you are using virtualenv
21
+ #env/
22
+
23
+ # Unit test / coverage reports
24
+ *.prof
25
+ .coverage
26
+ htmlcov/
27
+ .pytest_cache/
28
+
29
+ # Translations
30
+ *.mo
31
+
32
+ # Jupyter Notebook
33
+ .ipynb_checkpoints
34
+
35
+ # IDEs and editors
36
+ .idea/
37
+ *.suo
38
+ *.ntvs*
39
+ *.njsproj
40
+ *.sln
41
+ *.swp
42
+
43
+ # OS generated files
44
+ .DS_Store
45
+
46
+ #Secrets
47
+ *.key