We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1796d8a + f55a701 commit 62bb109Copy full SHA for 62bb109
1 file changed
.gitignore
@@ -1,11 +1,22 @@
1
# Python
2
__pycache__/
3
*.py[cod]
4
+*.pyo
5
+*.pyd
6
*.so
7
+
8
+# Packaging / build
9
+build/
10
+dist/
11
*.egg-info/
12
+pip-wheel-metadata/
13
14
+# Testing / tooling
15
.pytest_cache/
16
.mypy_cache/
17
.ruff_cache/
18
+.coverage
19
+htmlcov/
20
21
# Virtualenv
22
.venv/
@@ -15,9 +26,13 @@ env/
26
# Jupyter
27
.ipynb_checkpoints/
28
29
+# IDE
30
+.idea/
31
+*.iml
32
33
# OS
34
.DS_Store
35
Thumbs.db
36
37
# Local data cache (optional)
23
-.multiverse/
38
+.multiverse/
0 commit comments