whackthejacker commited on
Commit
8b4dc5a
·
verified ·
1 Parent(s): 6a34d75

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +71 -0
.gitignore ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Virtual environment
7
+ venv/
8
+ .env/
9
+ env/
10
+ *.venv
11
+
12
+ # Jupyter Notebook checkpoints
13
+ .ipynb_checkpoints/
14
+
15
+ # macOS files
16
+ .DS_Store
17
+
18
+ # Windows files
19
+ Thumbs.db
20
+
21
+ # Logs and temporary files
22
+ *.log
23
+ *.tmp
24
+ *.swp
25
+ *.swo
26
+
27
+ # Testing and coverage reports
28
+ .coverage
29
+ .tox/
30
+ .nox/
31
+ .pytest_cache/
32
+ htmlcov/
33
+
34
+ # MyPy cache
35
+ .mypy_cache/
36
+
37
+ # Cython compiled files
38
+ *.so
39
+
40
+ # Build and distribution
41
+ build/
42
+ dist/
43
+ *.egg-info/
44
+ pip-wheel-metadata/
45
+
46
+ # IDE and editor-specific files
47
+ .vscode/
48
+ .idea/
49
+ *.iml
50
+
51
+ # Poetry
52
+ poetry.lock
53
+
54
+ # Pipenv
55
+ Pipfile
56
+ Pipfile.lock
57
+
58
+ # Docker
59
+ *.dockerignore
60
+
61
+ # PyInstaller
62
+ *.spec
63
+
64
+ # Local configuration files
65
+ *.local
66
+ *.cfg
67
+ *.ini
68
+
69
+ # Security
70
+ .envrc
71
+ secrets.toml