Skip to content

Commit 3f8f172

Browse files
committed
Extended
1 parent 1306c01 commit 3f8f172

File tree

1 file changed

+45
-25
lines changed

1 file changed

+45
-25
lines changed

.gitignore

Lines changed: 45 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,61 @@
1+
# Python bytecode
12
*.pyc
2-
*.swp
3-
*.prof
3+
__pycache__/
4+
5+
# Distribution / packaging
46
MANIFEST
57
dist/
68
build/
9+
*.egg-info/
10+
11+
# Testing
712
.coverage
13+
.coverage.*
814
.cache/
9-
*.egg-info/
1015
.pytest_cache/
1116
.tox/
12-
src/datafog/__pycache__/
13-
src/datafog/pii_tools/__pycache__/
14-
tests/__pycache__/
17+
coverage.xml
18+
htmlcov/
19+
.benchmarks/
1520
tests/scratch.py
1621
tests/.datafog_env/
17-
node_modules/
18-
datafog_debug.log
19-
sotu_2023.txt
20-
.DS_Store
21-
venv/
22-
datafog-python/datafog/processing/image_processing/__pycache__/
23-
datafog-python/datafog/processing/text_processing/__pycache__/
24-
datafog-python/datafog/services/__pycache__/
25-
datafog-python/datafog/processing/__pycache__/
26-
datafog-python/datafog/__pycache__/
22+
error_log.txt
23+
24+
# Environment
2725
.env
28-
coverage.xml
29-
htmlcov/
30-
.venv/
31-
node_modules/
32-
.DS_Store
3326
.venv
27+
venv/
28+
env/
3429
examples/venv/
35-
error_log.txt
30+
31+
# Editors
32+
*.swp
33+
*.swo
34+
.idea/
35+
.vscode/
36+
*.sublime-*
37+
38+
# OS specific
39+
.DS_Store
40+
Thumbs.db
41+
42+
# Logs and debugging
43+
*.log
44+
*.prof
45+
datafog_debug.log
46+
47+
# Project specific
48+
sotu_2023.txt
49+
node_modules/
50+
scratch.py
51+
52+
# Documentation build
53+
docs/_build/
3654
docs/*
3755
!docs/*.rst
3856
!docs/conf.py
39-
scratch.py
40-
.coverage*
41-
.benchmarks
57+
!docs/Makefile
58+
!docs/make.bat
59+
60+
# Keep all directories but ignore their contents
61+
*/**/__pycache__/

0 commit comments

Comments
 (0)