Skip to content

Commit 960255c

Browse files
committed
add gitignore
1 parent 275b104 commit 960255c

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# build artifacts
2+
3+
.eggs/
4+
.mypy_cache
5+
*.egg-info/
6+
build/
7+
dist/
8+
pip-wheel-metadata/
9+
10+
11+
# dev tools
12+
13+
.envrc
14+
.python-version
15+
.idea
16+
.venv/
17+
.vscode/
18+
/*.iml
19+
pyrightconfig.json
20+
21+
22+
# jupyter notebooks
23+
24+
.ipynb_checkpoints
25+
26+
27+
# miscellaneous
28+
29+
.cache/
30+
doc/_build/
31+
*.swp
32+
.DS_Store
33+
34+
35+
# python
36+
37+
*.pyc
38+
*.pyo
39+
__pycache__
40+
41+
42+
# testing and continuous integration
43+
44+
.coverage
45+
.pytest_cache/
46+
.benchmarks
47+
48+
# documentation build artifacts
49+
50+
docs/build
51+
site/

0 commit comments

Comments
 (0)