Skip to content

Commit e233620

Browse files
Merge pull request #52 from vuillaut/gitignore
add .gitignore
2 parents 53f7c7d + 26b109d commit e233620

31 files changed

Lines changed: 132 additions & 0 deletions

.gitignore

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
*.dylib
9+
*.dll
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
*.egg
26+
pip-wheel-metadata/
27+
28+
# Installer logs
29+
pip-log.txt
30+
pip-delete-this-directory.txt
31+
32+
# Unit test / coverage reports
33+
htmlcov/
34+
.tox/
35+
.nox/
36+
.coverage
37+
.coverage.*
38+
.cache
39+
pytest_cache/
40+
nosetests.xml
41+
coverage.xml
42+
*.cover
43+
*.py,cover
44+
.hypothesis/
45+
46+
# Type checkers
47+
.mypy_cache/
48+
.dmypy.json
49+
.pyre/
50+
.pytype/
51+
52+
# Ruff / linters
53+
.ruff_cache/
54+
55+
# Virtual environments
56+
.venv/
57+
venv/
58+
env/
59+
ENV/
60+
env.bak/
61+
venv.bak/
62+
63+
# Pyenv
64+
.python-version
65+
66+
# Jupyter Notebook
67+
.ipynb_checkpoints
68+
69+
# IPython
70+
profile_default/
71+
ipython_config.py
72+
73+
# pyenv / pipenv / poetry
74+
Pipfile.lock
75+
poetry.lock
76+
77+
# PDM
78+
.pdm.toml
79+
.pdm-python
80+
.pdm-build/
81+
82+
# Environments
83+
.env
84+
.env.*
85+
*.env
86+
87+
# Logs
88+
*.log
89+
90+
# SQLite
91+
*.sqlite3
92+
93+
# VS Code
94+
.vscode/
95+
96+
# PyCharm / IntelliJ
97+
.idea/
98+
99+
# MacOS
100+
.DS_Store
101+
102+
# Windows
103+
Thumbs.db
104+
ehthumbs.db
105+
106+
# Sphinx documentation
107+
docs/_build/
108+
109+
# MkDocs
110+
site/
111+
112+
# PyInstaller
113+
*.manifest
114+
*.spec
115+
116+
# Caches
117+
*.cache
118+
119+
# mypy compiled cache
120+
.mypyc/
121+
122+
# Coverage reports
123+
coverage/
124+
125+
# Temporary files
126+
*.tmp
127+
*.swp
128+
*.bak
129+
130+
# Data files (adjust depending on project)
131+
data/
132+
datasets/
-186 Bytes
Binary file not shown.
-2.48 KB
Binary file not shown.
-1.9 KB
Binary file not shown.
Binary file not shown.
-1.85 KB
Binary file not shown.
-1.49 KB
Binary file not shown.
-2.28 KB
Binary file not shown.
-1.47 KB
Binary file not shown.
-3.72 KB
Binary file not shown.

0 commit comments

Comments
 (0)