File tree Expand file tree Collapse file tree 1 file changed +99
-0
lines changed Expand file tree Collapse file tree 1 file changed +99
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Python
2
+ __pycache__ /
3
+ * .py [cod ]
4
+ * $py.class
5
+ * .so
6
+ .Python
7
+ build /
8
+ develop-eggs /
9
+ dist /
10
+ downloads /
11
+ eggs /
12
+ .eggs /
13
+ lib /
14
+ lib64 /
15
+ parts /
16
+ sdist /
17
+ var /
18
+ wheels /
19
+ * .egg-info /
20
+ .installed.cfg
21
+ * .egg
22
+
23
+ # Virtual Environment
24
+ venv /
25
+ ENV /
26
+ env /
27
+ .env
28
+ .venv
29
+ env.bak /
30
+ venv.bak /
31
+
32
+ # IDE
33
+ .idea /
34
+ .vscode /
35
+ * .swp
36
+ * .swo
37
+ .DS_Store
38
+
39
+ # Testing
40
+ .coverage
41
+ htmlcov /
42
+ .tox /
43
+ .nox /
44
+ .pytest_cache /
45
+ .coverage. *
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ * .cover
50
+ * .py,cover
51
+ .hypothesis /
52
+ .pytest_cache /
53
+
54
+ # Distribution / packaging
55
+ .Python
56
+ build /
57
+ develop-eggs /
58
+ dist /
59
+ downloads /
60
+ eggs /
61
+ .eggs /
62
+ lib /
63
+ lib64 /
64
+ parts /
65
+ sdist /
66
+ var /
67
+ wheels /
68
+ * .egg-info /
69
+ .installed.cfg
70
+ * .egg
71
+
72
+ # Jupyter Notebook
73
+ .ipynb_checkpoints
74
+
75
+ # Logs
76
+ * .log
77
+ logs /
78
+ log /
79
+
80
+ # Local development settings
81
+ .env.local
82
+ .env.development.local
83
+ .env.test.local
84
+ .env.production.local
85
+
86
+ # Google Cloud specific
87
+ .gcloudignore
88
+ .gcloudignore.local
89
+
90
+ # Documentation
91
+ docs /_build /
92
+ site /
93
+
94
+ # Misc
95
+ .DS_Store
96
+ Thumbs.db
97
+ * .bak
98
+ * .tmp
99
+ * .temp
You can’t perform that action at this time.
0 commit comments