We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e87b31b commit 7a58cb0Copy full SHA for 7a58cb0
.gitignore
@@ -0,0 +1,52 @@
1
+# Build directories
2
+build/
3
+dist/
4
+*.spec
5
+
6
+# Python cache files
7
+__pycache__/
8
+*.py[cod]
9
+*$py.class
10
+*.so
11
12
+# Virtual environment
13
+venv/
14
+env/
15
+ENV/
16
+.venv/
17
18
+# IDE files
19
+.vscode/
20
+.idea/
21
+*.swp
22
+*.swo
23
+*~
24
25
+# OS files
26
+.DS_Store
27
+.DS_Store?
28
+._*
29
+.Spotlight-V100
30
+.Trashes
31
+ehthumbs.db
32
+Thumbs.db
33
34
+# Logs
35
+*.log
36
37
+# Package files
38
+*.egg-info/
39
+.eggs/
40
41
+# Testing
42
+.pytest_cache/
43
+.coverage
44
+htmlcov/
45
46
+# Local configuration
47
+.env
48
+config.local.py
49
50
+# Temporary files
51
+*.tmp
52
+*.temp
0 commit comments