Skip to content

Commit 602a25b

Browse files
committed
Add .gitignore
0 parents  commit 602a25b

1 file changed

Lines changed: 76 additions & 0 deletions

File tree

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
*.py[cod]
2+
__pycache__
3+
4+
# C extensions
5+
*.so
6+
7+
# Packages
8+
*.egg
9+
*.egg-info
10+
dist
11+
build
12+
eggs
13+
.eggs
14+
parts
15+
bin
16+
var
17+
sdist
18+
wheelhouse
19+
develop-eggs
20+
.installed.cfg
21+
lib
22+
lib64
23+
venv*/
24+
pyvenv*/
25+
pip-wheel-metadata/
26+
27+
# Installer logs
28+
pip-log.txt
29+
30+
# Unit test / coverage reports
31+
.coverage
32+
.tox
33+
.coverage.*
34+
.pytest_cache/
35+
nosetests.xml
36+
coverage.xml
37+
htmlcov
38+
39+
# Translations
40+
*.mo
41+
42+
# Buildout
43+
.mr.developer.cfg
44+
45+
# IDE project files
46+
.project
47+
.pydevproject
48+
.idea
49+
.vscode
50+
*.iml
51+
*.komodoproject
52+
53+
# Complexity
54+
output/*.html
55+
output/*/index.html
56+
57+
# Sphinx
58+
docs/_build
59+
60+
.DS_Store
61+
*~
62+
.*.sw[po]
63+
.build
64+
.ve
65+
.env
66+
.cache
67+
.pytest
68+
.benchmarks
69+
.bootstrap
70+
.appveyor.token
71+
*.bak
72+
73+
# Mypy Cache
74+
.mypy_cache/
75+
76+
token.json

0 commit comments

Comments
 (0)