Skip to content

Commit 36e34d9

Browse files
[PYTHON-4306] Added .gitignore (#10)
1 parent ba2b9f3 commit 36e34d9

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
*.dylib
9+
10+
# Distribution / packaging
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
pip-wheel-metadata/
25+
share/python-wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# Cython
32+
*.c
33+
*.cpp
34+
35+
# PyCharm
36+
*.idea/
37+
38+
# Sphinx documentation
39+
docs/_build/
40+
41+
# libbson files
42+
libbson
43+
mongo-c-driver-*
44+
45+
46+
# Benchmark and test output files
47+
results/*
48+
xunit-results/

0 commit comments

Comments
 (0)