Wisdom Chen commited on
Commit
e35c922
·
unverified ·
1 Parent(s): bad2277

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +87 -3
.gitignore CHANGED
@@ -1,7 +1,91 @@
 
1
  __pycache__/
2
- *.pyc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  .env
4
- .venv/
 
5
  venv/
6
- .idea/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  .vscode/
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
  __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # PyInstaller
28
+ *.manifest
29
+ *.spec
30
+
31
+ # Installer logs
32
+ pip-log.txt
33
+ pip-delete-this-directory.txt
34
+
35
+ # Unit test / coverage reports
36
+ htmlcov/
37
+ .tox/
38
+ .coverage
39
+ .coverage.*
40
+ .cache
41
+ nosetests.xml
42
+ coverage.xml
43
+ *.cover
44
+ .hypothesis/
45
+
46
+ # Jupyter Notebook
47
+ .ipynb_checkpoints
48
+
49
+ # pyenv
50
+ .python-version
51
+
52
+ # celery beat schedule file
53
+ celerybeat-schedule
54
+
55
+ # SageMath parsed files
56
+ *.sage.py
57
+
58
+ # Environments
59
  .env
60
+ .venv
61
+ env/
62
  venv/
63
+ ENV/
64
+ env.bak/
65
+ venv.bak/
66
+
67
+ # Spyder project settings
68
+ .spyderproject
69
+ .spyproject
70
+
71
+ # Rope project settings
72
+ .ropeproject
73
+
74
+ # mkdocs documentation
75
+ /site
76
+
77
+ # mypy
78
+ .mypy_cache/
79
+
80
+ # IDE settings
81
  .vscode/
82
+ .idea/
83
+
84
+ # OS generated files
85
+ .DS_Store
86
+ .DS_Store?
87
+ ._*
88
+ .Spotlight-V100
89
+ .Trashes
90
+ ehthumbs.db
91
+ Thumbs.db